feat : Proxy payment

This commit is contained in:
2025-09-07 12:17:43 +08:00
parent 14ba4674ee
commit d509459134
5 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Interface\Test\Proxy;
interface PaymentInterface
{
/**
* 代理支付接口
* @param float $amount
* @return array
*/
public function pay(float $amount) : array;
}