Exemplo n.º 1
0
 /**
  * Called by validate3d controller when cc payment has 3D secure
  *
  * @param $payment
  * @return mixed
  * @throws \Exception
  */
 protected function _authorise3d($payment)
 {
     try {
         $response = $this->_paymentRequest->authorise3d($payment);
     } catch (\Exception $e) {
         throw $e;
     }
     $responseCode = $response['resultCode'];
     return $responseCode;
 }
Exemplo n.º 2
0
 public function authorise3d($payment)
 {
     $response = $this->_paymentRequest->authorise3d($payment);
     $responseCode = $response['resultCode'];
     return $responseCode;
 }