Neos\Flow\Http\AbstractMessage::hasCookie PHP Method

hasCookie() public method

This is a shortcut for $message->getHeaders()->hasCookie($name);
public hasCookie ( string $name ) : boolean
$name string Name of the cookie
return boolean
    public function hasCookie($name)
    {
        return $this->headers->hasCookie($name);
    }