/home/desid573/public_html/angel/stripe/lib/Error
NameSizeModeActions
OAuth/-0755rm
Api.php590644editdlrm
ApiConnection.php690644editdlrm
Authentication.php700644editdlrm
Base.php15680644editdlrm
Card.php11630644editdlrm
Idempotency.php670644editdlrm
InvalidRequest.php4810644editdlrm
Permission.php660644editdlrm
RateLimit.php750644editdlrm
SignatureVerification.php3750644editdlrm
Edit: /home/desid573/public_html/angel/stripe/lib/Error/Base.php (1568B)
httpStatus = $httpStatus; $this->httpBody = $httpBody; $this->jsonBody = $jsonBody; $this->httpHeaders = $httpHeaders; $this->requestId = null; // TODO: make this a proper constructor argument in the next major // release. $this->stripeCode = isset($jsonBody["error"]["code"]) ? $jsonBody["error"]["code"] : null; if ($httpHeaders && isset($httpHeaders['Request-Id'])) { $this->requestId = $httpHeaders['Request-Id']; } } public function getStripeCode() { return $this->stripeCode; } public function getHttpStatus() { return $this->httpStatus; } public function getHttpBody() { return $this->httpBody; } public function getJsonBody() { return $this->jsonBody; } public function getHttpHeaders() { return $this->httpHeaders; } public function getRequestId() { return $this->requestId; } public function __toString() { $id = $this->requestId ? " from API request '{$this->requestId}'": ""; $message = explode("\n", parent::__toString()); $message[0] .= $id; return implode("\n", $message); } }