Contao\Session::set PHP Méthode

set() public méthode

Set a session variable
public set ( string $strKey, mixed $varValue )
$strKey string The variable name
$varValue mixed The variable value
    public function set($strKey, $varValue)
    {
        // Map the referer (see #281)
        if (in_array($strKey, $this->mappedKeys)) {
            $this->session->set($strKey, $varValue);
        } else {
            $this->sessionBag->set($strKey, $varValue);
        }
    }