Updated Client Detail Header for better mobile fit, lots of progress on stripe pay and some other minor updates

This commit is contained in:
johnny@pittpc.com
2019-09-13 20:33:00 -04:00
parent 5f30dbf9a9
commit 59ce30bd79
178 changed files with 25119 additions and 7 deletions

View File

@@ -0,0 +1,33 @@
<?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);
}
}