mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 03:14:52 +00:00
Removed unused libs in the vendor folder and moved stripe to the plugins folder then elininated the vendor folder all together, updated all the stripe links
This commit is contained in:
31
plugins/stripe-php-10.5.0/lib/OAuthErrorObject.php
Normal file
31
plugins/stripe-php-10.5.0/lib/OAuthErrorObject.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace Stripe;
|
||||
|
||||
/**
|
||||
* Class OAuthErrorObject.
|
||||
*
|
||||
* @property string $error
|
||||
* @property string $error_description
|
||||
*/
|
||||
class OAuthErrorObject extends StripeObject
|
||||
{
|
||||
/**
|
||||
* Refreshes this object using the provided values.
|
||||
*
|
||||
* @param array $values
|
||||
* @param null|array|string|Util\RequestOptions $opts
|
||||
* @param bool $partial defaults to false
|
||||
*/
|
||||
public function refreshFrom($values, $opts, $partial = false)
|
||||
{
|
||||
// Unlike most other API resources, the API will omit attributes in
|
||||
// error objects when they have a null value. We manually set default
|
||||
// values here to facilitate generic error handling.
|
||||
$values = \array_merge([
|
||||
'error' => null,
|
||||
'error_description' => null,
|
||||
], $values);
|
||||
parent::refreshFrom($values, $opts, $partial);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user