����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.116.61.213 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/app/libraries/vendor/omnipay/sagepay/src/ |
Upload File : |
<?php namespace Omnipay\SagePay; // CHECKME: do we really need these? use Omnipay\SagePay\Message\ServerAuthorizeRequest; use Omnipay\SagePay\Message\ServerCompleteAuthorizeRequest; use Omnipay\SagePay\Message\ServerPurchaseRequest; /** * Sage Pay Server Gateway */ class ServerGateway extends DirectGateway { public function getName() { return 'Sage Pay Server'; } /** * Authorize a payment. */ public function authorize(array $parameters = array()) { return $this->createRequest('\Omnipay\SagePay\Message\ServerAuthorizeRequest', $parameters); } /** * Authorize and capture a payment. */ public function purchase(array $parameters = array()) { return $this->createRequest('\Omnipay\SagePay\Message\ServerPurchaseRequest', $parameters); } /** * Handle notification callback. * Replaces completeAuthorize() and completePurchase() */ public function acceptNotification(array $parameters = array()) { return $this->createRequest('\Omnipay\SagePay\Message\ServerNotifyRequest', $parameters); } /** * Accept card details from a user and return a token, without any * authorization against that card. * i.e. standalone token creation. * Alias fof registerToken() */ public function createCard(array $parameters = array()) { return $this->registerToken($parameters); } /** * Accept card details from a user and return a token, without any * authorization against that card. * i.e. standalone token creation. */ public function registerToken(array $parameters = array()) { return $this->createRequest('\Omnipay\SagePay\Message\ServerTokenRegistrationRequest', $parameters); } /** * Handle token registration notification callback. * Please now use acceptNotification() * @deprecated */ public function completeRegistration(array $parameters = array()) { return $this->createRequest('\Omnipay\SagePay\Message\ServerTokenRegistrationCompleteRequest', $parameters); } /** * Handle authorize notification callback. * Please now use acceptNotification() * @deprecated */ public function completeAuthorize(array $parameters = array()) { return $this->createRequest('\Omnipay\SagePay\Message\ServerCompleteAuthorizeRequest', $parameters); } /** * Handle purchase notification callback. * Please now use acceptNotification() * @deprecated */ public function completePurchase(array $parameters = array()) { return $this->completeAuthorize($parameters); } }