feat : Bridge pay

This commit is contained in:
2025-09-07 18:22:41 +08:00
parent cb7e8842d6
commit 33cd767477
11 changed files with 369 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Interface\Test\Bridge;
interface PaymentInterface
{
/**
* @param float $amount
* @return array
*/
public function pay(float $amount): array;
/**
* @param float $amount
* @return array
*/
public function refund(float $amount): array;
}