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.
23 lines
570 B
23 lines
570 B
<?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);
|
|
}
|
|
|