yii\web\CookieCollection::removeAll PHP Méthode

removeAll() public méthode

Removes all cookies.
public removeAll ( )
    public function removeAll()
    {
        if ($this->readOnly) {
            throw new InvalidCallException('The cookie collection is read only.');
        }
        $this->_cookies = [];
    }