Viewing file: ConfirmPaymentIntentRequest.php (1.52 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/** * Stripe Payment Intents Authorize Request. */ namespace Omnipay\Stripe\Message\PaymentIntents;
/** * Stripe Confirm Payment Intent Request. * * This request is sent behind the scenes whenever an authorize or purchase request * is performed by the Payment Intents gateway. The previous authorize or purchase request * "primes" the purchase or authorization and this request confirms it. * * The response to this request indicates whether the payment requires 3DS authentication, * in which case it will be a redirect response. * * For examples, refer to related purchase and authorization classes. * * @see \Omnipay\Stripe\Gateway * @see \Omnipay\Stripe\Message\PaymentIntents\AuthorizeRequest * @see \Omnipay\Stripe\Message\PaymentIntents\PurchaseRequest * @link https://stripe.com/docs/api/payment_intents/confirm */ class ConfirmPaymentIntentRequest extends AbstractRequest { /** * @inheritdoc */ public function getData() { $this->validate('paymentIntentReference');
$data = array();
if ($this->getReturnUrl()) { $data['return_url'] = $this->getReturnUrl(); }
return $data; }
/** * @inheritdoc */ public function getEndpoint() { return $this->endpoint.'/payment_intents/' . $this->getPaymentIntentReference() . '/confirm'; }
/** * @inheritdoc */ protected function createResponse($data, $headers = []) { return $this->response = new Response($this, $data, $headers); } }
|