Inheritance: extends Omnipay\Common\Message\AbstractRequest
 public function sendData($data)
 {
     $result = parent::sendData($data);
     return $this->response = new QueryRefundResponse($this, $result);
 }
Exemple #2
0
 public function sendData($data)
 {
     $curl_options = ['cert' => true, 'ssl_cert_path' => $this->getSslCertPath(), 'ssl_key_path' => $this->getSslKeyPath()];
     $result = parent::sendData($data, $curl_options);
     return $this->response = new RefundResponse($this, $result);
 }
Exemple #3
0
 public function sendData($data)
 {
     $result = parent::sendData($data);
     return $this->response = new CloseOrderResponse($this, $result);
 }
 protected function validateData()
 {
     parent::validateData();
     $this->validate('bill_date');
 }