Pop\Web\Session::__set PHP Méthode

__set() public méthode

Set a property in the session object that is linked to the $_SESSION global variable.
public __set ( string $name, mixed $value ) : void
$name string
$value mixed
Résultat void
    public function __set($name, $value)
    {
        $_SESSION[$name] = $value;
    }