yii\web\CookieCollection::offsetSet PHP Метод

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

This method is required by the SPL interface [[\ArrayAccess]]. It is implicitly called when you use something like $collection[$name] = $cookie;. This is equivalent to CookieCollection::add.
public offsetSet ( string $name, Cookie $cookie )
$name string the cookie name
$cookie Cookie the cookie to be added
    public function offsetSet($name, $cookie)
    {
        $this->add($cookie);
    }