Example #1
0
 public function sendData($data, $root = 'refund')
 {
     return parent::sendData($data, $root);
 }
Example #2
0
 public function sendData($data, $root = 'capture')
 {
     return parent::sendData($data, $root);
 }
Example #3
0
 /**
  * @param  mixed $data
  * @return \Omnipay\Emp\Message\RefundResponse
  */
 public function sendData($data)
 {
     $responseData = parent::sendData($data);
     $this->response = new RefundResponse($this, $responseData);
     return $this->response;
 }
 public function sendData($data, $root = '')
 {
     return parent::sendData($data, 'complete-action');
 }