mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 02:58:14 -05:00
11 lines
176 B
PHP
11 lines
176 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface PaymentInterface
|
|
{
|
|
public function form(): array;
|
|
public function pay($order): array;
|
|
public function notify($params);
|
|
}
|