Files
hyperf_test/app/Interface/Test/Proxy/PaymentInterface.php
2025-09-07 12:17:43 +08:00

13 lines
213 B
PHP

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