![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/job-board.corals.io/Corals/modules/Payment/SecurionPay/Message/ |
<?php /** * SecurionPay Capture Request. */ namespace Corals\Modules\Payment\SecurionPay\Message; /** * SecurionPay Capture Request. * * Use this request to capture and process a previously created authorization. * * Example -- note this example assumes that the authorization has been successful * and that the authorization ID returned from the authorization is held in $auth_id. * See AuthorizeRequest for the first part of this example transaction: * * <code> * // Once the transaction has been authorized, we can capture it for final payment. * $transaction = $gateway->capture(array( * 'amount' => '10.00', * 'currency' => 'AUD', * )); * $transaction->setTransactionReference($auth_id); * $response = $transaction->send(); * </code> * * @see AuthorizeRequest */ class CaptureRequest extends AbstractRequest { public function getData() { $this->validate('transactionReference'); $data = array(); if ($amount = $this->getAmountInteger()) { $data['amount'] = $amount; } return $data; } public function getEndpoint() { return $this->endpoint . '/charges/' . $this->getTransactionReference() . '/capture'; } }