SevenShores\Hubspot\Http\Response::withoutHeader PHP Method

withoutHeader() public method

Header resolution MUST be done without case-sensitivity. This method MUST be implemented in such a way as to retain the immutability of the message, and MUST return an instance that removes the named header.
public withoutHeader ( string $name ) : self
$name string Case-insensitive header field name to remove.
return self
    function withoutHeader($name)
    {
        return $this->response->withoutHeader($name);
    }