yii\web\CookieCollection::removeAll PHP Method

removeAll() public method

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