Nette\Http\SessionSection::__unset PHP Method

__unset() public method

Unsets a variable in this session section.
public __unset ( $name ) : void
return void
    public function __unset($name)
    {
        $this->start();
        unset($this->data[$name], $this->meta[$name]);
    }