Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.volley92.asso.fr
/
htdocs
/
vendor
/
stripe
/
stripe-php
/
lib
/
/srv/data/web/vhosts/www.volley92.asso.fr/htdocs/vendor/stripe/stripe-php/lib/OAuthErrorObject.php
<?php namespace Stripe; /** * Class OAuthErrorObject * * @property string $error * @property string $error_description * * @package Stripe */ class OAuthErrorObject extends StripeObject { /** * Refreshes this object using the provided values. * * @param array $values * @param null|string|array|Util\RequestOptions $opts * @param boolean $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); } }