ManaPHP\Http\Response::setRawHeader PHP Method

setRawHeader() public method

Send a raw header to the response $response->setRawHeader("HTTP/1.1 404 Not Found");
public setRawHeader ( string $header ) : static
$header string
return static
    public function setRawHeader($header)
    {
        $this->_headers[$header] = null;
        return $this;
    }