Neos\Flow\Http\Response::getStatusLine PHP Method

getStatusLine() public method

Return the Status-Line of this Response Message, consisting of the version, the status code and the reason phrase Would be, for example, "HTTP/1.1 200 OK" or "HTTP/1.1 400 Bad Request"
See also: http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6.1
public getStatusLine ( ) : string
return string
    public function getStatusLine()
    {
        return sprintf("%s %s %s\r\n", $this->version, $this->statusCode, $this->statusMessage);
    }