Exemple #1
0
 public function sendData($data)
 {
     $result = parent::sendData($data);
     return $this->response = new CloseOrderResponse($this, $result);
 }
 public function sendData($data)
 {
     $result = parent::sendData($data);
     return $this->response = new QueryRefundResponse($this, $result);
 }
Exemple #3
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);
 }