body = $body; $this->code = $code; $this->headers = $headers; } /** * Whether status code is successful * * @return bool */ public function isSuccess() { return $this->code >= 200 && $this->code < 300; } }