NEW Update Stripe library to 6.34.3

This commit is contained in:
Laurent Destailleur
2019-05-03 02:22:27 +02:00
parent 10d853cdb3
commit eab49d4300
166 changed files with 3851 additions and 5981 deletions

View File

@@ -13,11 +13,11 @@ class OAuthBase extends \Stripe\Error\Base
$httpHeaders = null
) {
parent::__construct($description, $httpStatus, $httpBody, $jsonBody, $httpHeaders);
$this->code = $code;
$this->errorCode = $code;
}
public function getErrorCode()
{
return $this->code;
return $this->errorCode;
}
}