⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
vendor
/
xendit
/
xendit-php
/
src
/
View File Name :
Cards.php
<?php /** * Cards.php * php version 7.2.0 * * @category Class * @package Xendit * @author Ellen <ellen@xendit.co> * @license https://opensource.org/licenses/MIT MIT License * @link https://api.xendit.co */ namespace Xendit; /** * Class Cards * * @category Class * @package Xendit * @author Ellen <ellen@xendit.co> * @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); } }