From 75160b12821f7f4299cce7f0b69c83c1502ae071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Mon, 27 May 2024 13:08:29 +0200 Subject: 2024-02-19 upstream --- .../stripe/stripe-php/lib/ApplicationFeeRefund.php | 132 ++++++++++----------- 1 file changed, 66 insertions(+), 66 deletions(-) (limited to 'vendor/stripe/stripe-php/lib/ApplicationFeeRefund.php') diff --git a/vendor/stripe/stripe-php/lib/ApplicationFeeRefund.php b/vendor/stripe/stripe-php/lib/ApplicationFeeRefund.php index dc7c34b..12ccb9b 100644 --- a/vendor/stripe/stripe-php/lib/ApplicationFeeRefund.php +++ b/vendor/stripe/stripe-php/lib/ApplicationFeeRefund.php @@ -1,66 +1,66 @@ -Application Fee Refund objects allow you to refund an application - * fee that has previously been created but not yet refunded. Funds will be - * refunded to the Stripe account from which the fee was originally collected. - * - * Related guide: Refunding - * Application Fees. - * - * @property string $id Unique identifier for the object. - * @property string $object String representing the object's type. Objects of the same type share the same value. - * @property int $amount Amount, in %s. - * @property null|string|\Stripe\BalanceTransaction $balance_transaction Balance transaction that describes the impact on your account balance. - * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. - * @property string $currency Three-letter ISO currency code, in lowercase. Must be a supported currency. - * @property string|\Stripe\ApplicationFee $fee ID of the application fee that was refunded. - * @property null|\Stripe\StripeObject $metadata Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. - */ -class ApplicationFeeRefund extends ApiResource -{ - const OBJECT_NAME = 'fee_refund'; - - use ApiOperations\Update { - save as protected _save; - } - - /** - * @return string the API URL for this Stripe refund - */ - public function instanceUrl() - { - $id = $this['id']; - $fee = $this['fee']; - if (!$id) { - throw new Exception\UnexpectedValueException( - 'Could not determine which URL to request: ' . - "class instance has invalid ID: {$id}", - null - ); - } - $id = Util\Util::utf8($id); - $fee = Util\Util::utf8($fee); - - $base = ApplicationFee::classUrl(); - $feeExtn = \urlencode($fee); - $extn = \urlencode($id); - - return "{$base}/{$feeExtn}/refunds/{$extn}"; - } - - /** - * @param null|array|string $opts - * - * @return ApplicationFeeRefund the saved refund - */ - public function save($opts = null) - { - return $this->_save($opts); - } -} +Application Fee Refund objects allow you to refund an application + * fee that has previously been created but not yet refunded. Funds will be + * refunded to the Stripe account from which the fee was originally collected. + * + * Related guide: Refunding + * Application Fees. + * + * @property string $id Unique identifier for the object. + * @property string $object String representing the object's type. Objects of the same type share the same value. + * @property int $amount Amount, in %s. + * @property null|string|\Stripe\BalanceTransaction $balance_transaction Balance transaction that describes the impact on your account balance. + * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. + * @property string $currency Three-letter ISO currency code, in lowercase. Must be a supported currency. + * @property string|\Stripe\ApplicationFee $fee ID of the application fee that was refunded. + * @property null|\Stripe\StripeObject $metadata Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. + */ +class ApplicationFeeRefund extends ApiResource +{ + const OBJECT_NAME = 'fee_refund'; + + use ApiOperations\Update { + save as protected _save; + } + + /** + * @return string the API URL for this Stripe refund + */ + public function instanceUrl() + { + $id = $this['id']; + $fee = $this['fee']; + if (!$id) { + throw new Exception\UnexpectedValueException( + 'Could not determine which URL to request: ' . + "class instance has invalid ID: {$id}", + null + ); + } + $id = Util\Util::utf8($id); + $fee = Util\Util::utf8($fee); + + $base = ApplicationFee::classUrl(); + $feeExtn = \urlencode($fee); + $extn = \urlencode($id); + + return "{$base}/{$feeExtn}/refunds/{$extn}"; + } + + /** + * @param null|array|string $opts + * + * @return ApplicationFeeRefund the saved refund + */ + public function save($opts = null) + { + return $this->_save($opts); + } +} -- cgit v1.2.3