File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/pin/src/Message/Response.php
Back
<?php /** * Pin Response */ namespace Omnipay\Pin\Message; use Omnipay\Common\Message\AbstractResponse; /** * Pin Response * * This is the response class for all Pin REST requests. * * @see \Omnipay\Pin\Gateway */ class Response extends AbstractResponse { public function isSuccessful() { return !isset($this->data['error']); } public function getTransactionReference() { if (isset($this->data['response']['token'])) { return $this->data['response']['token']; } } /** * Get Card Reference * * This is used after createCard to get the credit card token to be * used in future transactions. * * @return string */ public function getCardReference() { if (isset($this->data['response']['token'])) { return $this->data['response']['token']; } } /** * @deprecated */ public function getCardToken() { return $this->getCardReference(); } /** * Get Customer Reference * * This is used after createCustomer to get the customer token to be * used in future transactions. * * @return string */ public function getCustomerReference() { if (isset($this->data['response']['token'])) { return $this->data['response']['token']; } } /** * @deprecated */ public function getCustomerToken() { return $this->getCustomerReference(); } public function getMessage() { if ($this->isSuccessful()) { if (isset($this->data['response']['status_message'])) { return $this->data['response']['status_message']; } else { return true; } } else { return $this->data['error_description']; } } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.04 |
proxy
|
phpinfo
|
Settings