Neos\Flow\Http\AbstractMessage::hasCookie PHP Метод

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

This is a shortcut for $message->getHeaders()->hasCookie($name);
public hasCookie ( string $name ) : boolean
$name string Name of the cookie
Результат boolean
    public function hasCookie($name)
    {
        return $this->headers->hasCookie($name);
    }