상속: extends Omnipay\Common\Message\AbstractRequest
예제 #1
0
 public function sendData($data)
 {
     $result = parent::sendData($data);
     return $this->response = new QueryRefundResponse($this, $result);
 }
예제 #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);
 }
예제 #3
0
 public function sendData($data)
 {
     $result = parent::sendData($data);
     return $this->response = new CloseOrderResponse($this, $result);
 }
예제 #4
0
 protected function validateData()
 {
     parent::validateData();
     $this->validate('bill_date');
 }