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