response_headers = $responseHeaders; $this->response_body = $responseBody; } /** * Get the HTTP response header * * @return string HTTP response header */ public function getResponseHeaders() { return $this->response_headers; } /** * Get the HTTP response body * * @return string HTTP response body */ public function getResponseBody() { return $this->response_body; } }