Vous êtes connecté en tant que anonymous Se Deconnecter
<?php


namespace MVC\Classe;


class Session
{

    static public function start()
    {
        session_start();
        return;
    }

    static public function setUserProfile($userProfile)
    {
        $_SESSION['userProfile'] = $userProfile;
        return;
    }

    static public function setToken($token)
    {
        $_SESSION['userToken'] = $token;
        return;
    }

    static public function isRegistered()
    {
        if (isset($_SESSION['userProfile'])) {
            return;
        } else {
            header("location : " . Url::link_rewrite(false, 'error', []));
            die('Ooops, something was wrong...');
        }
    }

}