Kelpie\Server\Response::head PHP Method

head() public method

Top header of the response, containing the status code and response headers.
public head ( )
    public function head()
    {
        return sprintf("HTTP/1.1 %s %s\r\n%s\r\n", $this->_status, self::$HTTP_STATUS_CODES[$this->_status], $this->headersOutput());
    }