Nette\Http\SessionSection::__set PHP Method

__set() public method

Sets a variable in this session section.
public __set ( $name, $value ) : void
return void
    public function __set($name, $value)
    {
        $this->start();
        $this->data[$name] = $value;
    }