| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Lakala;
- use SixShop\Payment\Contracts\PaymentNotifyResult;
- use SixShop\Payment\Contracts\PaymentProviderInterface;
- use SixShop\Payment\Contracts\PaymentQueryResult;
- use SixShop\Payment\Contracts\PaymentRefundRequest;
- use SixShop\Payment\Contracts\PaymentRefundResult;
- use SixShop\Payment\Contracts\PaymentResponse;
- use SixShop\Payment\Enum\PaymentBizEnum;
- class PaymentProvider implements PaymentProviderInterface
- {
- #[\Override] public function create(array $order, PaymentBizEnum $bizType): PaymentResponse
- {
- throw new \Exception('Not implemented');
- }
- #[\Override] public function notify(array $request): PaymentNotifyResult
- {
- throw new \Exception('Not implemented');
- }
- #[\Override] public function query(int $recordID): PaymentQueryResult
- {
- throw new \Exception('Not implemented');
- }
- #[\Override] public function refund(int $recordID, PaymentRefundRequest $param): PaymentRefundResult
- {
- throw new \Exception('Not implemented');
- }
- #[\Override] public function refundQuery(int $refundID): PaymentRefundResult
- {
- throw new \Exception('Not implemented');
- }
- }
|