You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
570 B
24 lines
570 B
1 year ago
|
<?php
|
||
|
namespace App\Library\SslCommerz;
|
||
|
|
||
|
interface SslCommerzInterface
|
||
|
{
|
||
|
public function makePayment(array $data);
|
||
|
|
||
|
public function orderValidate($trxID, $amount, $currency, $requestData);
|
||
|
|
||
|
public function setParams($data);
|
||
|
|
||
|
public function setRequiredInfo(array $data);
|
||
|
|
||
|
public function setCustomerInfo(array $data);
|
||
|
|
||
|
public function setShipmentInfo(array $data);
|
||
|
|
||
|
public function setProductInfo(array $data);
|
||
|
|
||
|
public function setAdditionalInfo(array $data);
|
||
|
|
||
|
public function callToApi($data, $header = [], $setLocalhost = false);
|
||
|
}
|