Files
hyperf_test/app/Interface/Test/Adapter/PaymentGatewayInterface.php
2025-09-05 15:00:28 +08:00

8 lines
130 B
PHP

<?php
namespace App\Interface\Test\Adapter;
interface PaymentGatewayInterface
{
public function pay(float $amount): array;
}