예제 #1
0
 /**
  * send this debitpay and get response
  * @return boolean true if transaction was accepted, false otherwise
  */
 public function sendRequest()
 {
     parent::sendRequest();
     return $this->isError() === false;
 }
예제 #2
0
 /**
  * send this message and get response
  * @return array transactionid=>status
  */
 public function sendRequest()
 {
     parent::sendRequest();
     return $this->getStatusArray();
 }
 /**
  * Sets the root tag and calls the parent method
  *
  * @see SofortLibAbstract::sendRequest()
  */
 public function sendRequest()
 {
     $this->_rootTag = $this->_root . '_request';
     parent::sendRequest();
 }