$params =
[ 'lifetime' =>
$this->config->expiration,
'path' =>
$this->cookie->
getPath(),
'domain' =>
$this->cookie->
getDomain(),
'secure' =>
$this->cookie->
isSecure(),
'httponly' => true, // HTTP only; Yes, this is intentional and not configurable for security reasons.
'samesite' =>
$sameSite,
];
ini_set('session.cookie_samesite',
$sameSite);
session_set_cookie_params($params);
if ($this->config->expiration > 0
) { ini_set('session.gc_maxlifetime',
(string) $this->config->expiration
);
} if (!
empty($this->config->savePath
)) { ini_set('session.save_path',
$this->config->savePath
);
} // Security is king
ini_set('session.use_trans_sid', '0'
);