/home/techb158/immovalet.ca/Client/stripe-php/lib/Error
NameSizeModeActions
OAuth/-0777rm
Api.php660666editdlrm
ApiConnection.php760666editdlrm
Authentication.php770666editdlrm
Base.php16370666editdlrm
Card.php12030666editdlrm
Idempotency.php740666editdlrm
InvalidRequest.php5040666editdlrm
Permission.php730666editdlrm
RateLimit.php820666editdlrm
SignatureVerification.php3950666editdlrm
Edit: /home/techb158/immovalet.ca/Client/stripe-php/lib/Error/Base.php (1637B)
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); } }