| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCart\App\Modules\PaymentMethods\Core; |
| 4 |
|
| 5 |
use FluentCart\App\Services\Payments\PaymentInstance; |
| 6 |
|
| 7 |
interface PaymentGatewayInterface |
| 8 |
{ |
| 9 |
public function has(string $feature): bool; |
| 10 |
public function meta(): array; |
| 11 |
public function makePaymentFromPaymentInstance(PaymentInstance $paymentInstance); |
| 12 |
public function handleIPN(); |
| 13 |
public function getOrderInfo(array $data); |
| 14 |
public function fields(); |
| 15 |
} |
| 16 |
|