����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.133.59.209 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/public_html/vendor/omnipay/stripe/src/ |
Upload File : |
<?php /** * Stripe Payment Intents Gateway. */ namespace Omnipay\Stripe; use Omnipay\Stripe\Message\PaymentIntents\Response; /** * Stripe Payment Intents Gateway. * * @see \Omnipay\Stripe\AbstractGateway * @see \Omnipay\Stripe\Message\AbstractRequest * * @link https://stripe.com/docs/api * */ class PaymentIntentsGateway extends AbstractGateway { /** * @inheritdoc */ public function getName() { return 'Stripe Payment Intents'; } /** * @inheritdoc * * @return \Omnipay\Stripe\Message\PaymentIntents\AuthorizeRequest */ public function authorize(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\AuthorizeRequest', $parameters); } /** * @inheritdoc * * In reality, we're confirming the payment intent. * This method exists as an alias to in line with how Omnipay interfaces define things. * * @return \Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest */ public function completeAuthorize(array $options = []) { return $this->confirm($options); } /** * @inheritdoc * * @return \Omnipay\Stripe\Message\PaymentIntents\CaptureRequest */ public function capture(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\CaptureRequest', $parameters); } /** * Confirm a Payment Intent. Use this to confirm a payment intent created by a Purchase or Authorize request. * * @param array $parameters * @return \Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest */ public function confirm(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest', $parameters); } /** * Cancel a Payment Intent. * * @param array $parameters * @return \Omnipay\Stripe\Message\PaymentIntents\CancelPaymentIntentRequest */ public function cancel(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\CancelPaymentIntentRequest', $parameters); } /** * @inheritdoc * * @return \Omnipay\Stripe\Message\PaymentIntents\PurchaseRequest */ public function purchase(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\PurchaseRequest', $parameters); } /** * @inheritdoc * * In reality, we're confirming the payment intent. * This method exists as an alias to in line with how Omnipay interfaces define things. * * @return \Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest */ public function completePurchase(array $options = []) { return $this->confirm($options); } /** * Fetch a payment intent. Use this to check the status of it. * * @return \Omnipay\Stripe\Message\PaymentIntents\FetchPaymentIntentRequest */ public function fetchPaymentIntent(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\FetchPaymentIntentRequest', $parameters); } // // Cards // @link https://stripe.com/docs/api/payment_methods // /** * @return \Omnipay\Stripe\Message\PaymentIntents\FetchPaymentMethodRequest */ public function fetchCard(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\FetchPaymentMethodRequest', $parameters); } /** * @inheritdoc * * @return \Omnipay\Stripe\Message\PaymentIntents\CreatePaymentMethodRequest */ public function createCard(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\CreatePaymentMethodRequest', $parameters); } /** * @inheritdoc * * @return \Omnipay\Stripe\Message\PaymentIntents\CreatePaymentMethodRequest */ public function attachCard(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\AttachPaymentMethodRequest', $parameters); } /** * @inheritdoc * * @return \Omnipay\Stripe\Message\PaymentIntents\UpdatePaymentMethodRequest */ public function updateCard(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\UpdatePaymentMethodRequest', $parameters); } /** * @inheritdoc * * @return \Omnipay\Stripe\Message\PaymentIntents\DetachPaymentMethodRequest */ public function deleteCard(array $parameters = array()) { return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\DetachPaymentMethodRequest', $parameters); } }