Files
hyperf_test/app/Interface/Test/Adapter/PaymentGateway.php
ctexthuang f4b812f861
Some checks are pending
Build Docker / build (push) Waiting to run
feat : pay Adapter
2025-09-04 23:08:54 +08:00

8 lines
121 B
PHP

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