Current Path : /var/test/www/storage2/vendor/divido/divido-php/lib/Divido/ |
Current File : /var/test/www/storage2/vendor/divido/divido-php/lib/Divido/Refund.php |
<?php class Divido_Refund extends Divido_ApiResource { /** * @param string $id The ID of the charge to retrieve. * @param string|null $apiKey * * @return Divido_Fulfillment */ public static function retrieve($id, $apiKey=null) { $class = get_class(); return self::_scopedRetrieve($class, $id, $apiKey); } /** * @param array|null $params * @param string|null $apiKey * * @return array An array of Divido_Fulfillment. */ public static function all($params=null, $apiKey=null) { $class = get_class(); return self::_scopedAll($class, $params, $apiKey); } /** * @param array|null $params * @param string|null $apiKey * * @return Divido_Charge The created charge. */ public static function refund($params=null, $merchant=null) { $class = get_class(); return self::_scopedRefundRequest($class, $params, $merchant); } /** * @return Divido_Fulfillment The saved charge. */ public function save() { $class = get_class(); return self::_scopedSave($class); } }