| Current Path : /var/www/html/ebookingdbkl/common/components/payment/ |
| Current File : /var/www/html/ebookingdbkl/common/components/payment/PaymentGatewayInterface.php |
<?php
namespace common\components\payment;
interface PaymentGatewayInterface {
public function authorize();
public function pay(...$param);
public function payStatus(...$param);
public function hash($data=null);
}