Update Stripe PHP API
Summary: Ref T2787. This brings us up to date. Test Plan: `git clone` Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T2787 Differential Revision: https://secure.phabricator.com/D9916
This commit is contained in:
@@ -2,9 +2,11 @@
|
||||
|
||||
class Stripe_InvalidRequestError extends Stripe_Error
|
||||
{
|
||||
public function __construct($message, $param, $http_status=null, $http_body=null, $json_body=null)
|
||||
public function __construct($message, $param, $httpStatus=null,
|
||||
$httpBody=null, $jsonBody=null
|
||||
)
|
||||
{
|
||||
parent::__construct($message, $http_status, $http_body, $json_body);
|
||||
parent::__construct($message, $httpStatus, $httpBody, $jsonBody);
|
||||
$this->param = $param;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user