Your IP : 216.73.216.79


Current Path : /var/www/html/ebookingdbkl/common/components/payment/
Upload File :
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);
}