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

__get() public méthode

Get method to return the value of the $_SESSION global variable.
public __get ( string $name ) : mixed
$name string
Résultat mixed
    public function __get($name)
    {
        return isset($_SESSION[$name]) ? $_SESSION[$name] : null;
    }