![]() 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/vendor/xendit/xendit-php/src/ |
<?php /** * Cards.php * php version 7.2.0 * * @category Class * @package Xendit * @author Ellen <[email protected]> * @license https://opensource.org/licenses/MIT MIT License * @link https://api.xendit.co */ namespace Xendit; /** * Class Cards * * @category Class * @package Xendit * @author Ellen <[email protected]> * @license https://opensource.org/licenses/MIT MIT License * @link https://api.xendit.co */ class Cards { use ApiOperations\Request; use ApiOperations\Retrieve; use ApiOperations\Create; /** * Instantiate base URL * * @return string */ public static function classUrl() { return "/credit_card_charges"; } /** * Capture charge, see https://xendit.github.io/apireference/?bash#capture-charge * for more details * * @param string $id charge ID * @param array $params user parameters * * @return array [ * 'created' => string, * 'status' => string, * 'business_id' => string, * 'authorized_amount' => int, * 'external_id' => string, * 'merchant_id' => string, * 'merchant_reference_code' => string, * 'card_type' => string, * 'masked_card_number' => string, * 'charge_type' => string, * 'card_brand' => string, * 'bank_reconciliation_id' => string, * 'capture_amount' => int, * 'descriptor' => string, * 'id' => string * ] * @throws Exceptions\ApiException */ public static function capture($id, $params = []) { $url = self::classUrl() . '/' . $id . '/capture'; $requiredParams = ['amount']; self::validateParams($params, $requiredParams); return static::_request('POST', $url, $params); } /** * Instantiate required params for Create * * @return array */ public static function createReqParams() { return ['token_id', 'external_id', 'amount']; } /** * Reverse authorized charge * * @param string $id charge ID * @param array $params user params * * @return array [ * 'created' => string, * 'credit_card_charge_id' => string, * 'external_id' => string, * 'business_id' => string, * 'amount' => int, * 'status' => string, * 'id' => string * ] * @throws Exceptions\ApiException */ public static function reverseAuthorization($id, $params = []) { $url = self::classUrl() . '/' . $id . '/auth_reversal'; $requiredParams = ['external_id']; self::validateParams($params, $requiredParams); return static::_request('POST', $url, $params); } /** * Create refund, see https://xendit.github.io/apireference/?bash#capture-charge * for more details * * @param string $id charge ID * @param array $params user parameters * * @return array [ * 'updated' => string, * 'created' => string, * 'credit_card_charge_id' => string, * 'user_id' => string, * 'amount' => int, * 'external_id' => string, * 'status' => 'SUCCEEDED' || 'FAILED', * 'fee_refund_amount' => int, * 'id' => string * ] * @throws Exceptions\ApiException */ public static function createRefund($id, $params = []) { $url = self::classUrl() . '/' . $id . '/refunds'; $requiredParams = ['amount', 'external_id']; self::validateParams($params, $requiredParams); return static::_request('POST', $url, $params); } }