Kelpie\Server\Response::head PHP Метод

head() публичный Метод

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());
    }