diff options
Diffstat (limited to 'vendor/stripe/stripe-php/lib/OAuthErrorObject.php')
-rw-r--r-- | vendor/stripe/stripe-php/lib/OAuthErrorObject.php | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/vendor/stripe/stripe-php/lib/OAuthErrorObject.php b/vendor/stripe/stripe-php/lib/OAuthErrorObject.php index 620c5bb..945cb66 100644 --- a/vendor/stripe/stripe-php/lib/OAuthErrorObject.php +++ b/vendor/stripe/stripe-php/lib/OAuthErrorObject.php @@ -1,31 +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); - } -} +<?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);
+ }
+}
|