httpStatus = $httpStatus; $this->httpBody = $httpBody; $this->jsonBody = $jsonBody; } /** * Returns HTTP status code. * * @return null */ public function getHttpStatus() { return $this->httpStatus; } /** * Returns HTTP body. * * @return null */ public function getHttpBody() { return $this->httpBody; } /** * Returns JSON body. * * @return null */ public function getJsonBody() { return $this->jsonBody; } }