forked from a1gard/xshop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
PHTML
41 lines
1.1 KiB
PHTML
2 years ago
|
<?php
|
||
|
|
||
|
|
||
|
namespace App\Contracts;
|
||
|
|
||
|
|
||
|
interface PaymentStore
|
||
|
{
|
||
|
/**
|
||
|
* Store payment request
|
||
|
*
|
||
|
* @param int $orderId Payment unique order id
|
||
|
* @param null $token
|
||
|
* @param string $type One of 'ONLINE', 'CHEQUE', 'CASH', 'CARD', 'CASH_ON_DELIVERY'
|
||
|
*
|
||
|
* @return \App\Models\Payment
|
||
|
*/
|
||
|
public function storePaymentRequest($orderId,$amount, $token = null, $type = 'ONLINE',$bank=null): \App\Models\Payment;
|
||
|
|
||
|
/**
|
||
|
* Store success payment and update invoice status
|
||
|
*
|
||
|
* @param int $paymentId Payment unique order id
|
||
|
* @param string|int $referenceId Transaction reference id
|
||
|
* @param null $cardNumber
|
||
|
*
|
||
|
* @return \App\Models\Payment
|
||
|
*/
|
||
|
public function storeSuccessPayment($paymentId, $referenceId, $cardNumber = null): \App\Models\Payment;
|
||
|
|
||
|
/**
|
||
|
* Store failed payment and update invoice status
|
||
|
*
|
||
|
* @param int $orderId Payment unique order id
|
||
|
* @param null $message Fail reason text to store
|
||
|
*
|
||
|
* @return \App\Models\Payment
|
||
|
*/
|
||
|
public function storeFailPayment($orderId, $message = null): \App\Models\Payment;
|
||
|
}
|