regenerateId accesses the super-global variable $_SESSION.
public function regenerateId()
{
$oldSessionId = $this->getSessionId();
if (version_compare(PHP_VERSION, '7.1.0', '>=')) {
$newSessionId = session_create_id();
generateFingerprint accesses the super-global variable $_SERVER.
protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];
generateFingerprint accesses the super-global variable $_SERVER.
protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];
generateFingerprint accesses the super-global variable $_SERVER.
protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];
writeMetadata accesses the super-global variable $_SESSION.
protected function writeMetadata() {
$_SESSION[self::METADATA_KEY] = $this->metadata;
}
startSession accesses the super-global variable $_SESSION.
public function startSession()
{
$result = session_start();
if ($result === false) {
throw new \RuntimeException('session_start() unexpectedly failed.');
regenerateId accesses the super-global variable $_COOKIE.
public function regenerateId()
{
$oldSessionId = $this->getSessionId();
if (version_compare(PHP_VERSION, '7.1.0', '>=')) {
$newSessionId = session_create_id();
startSession accesses the super-global variable $_SESSION.
public function startSession()
{
$result = session_start();
if ($result === false) {
throw new \RuntimeException('session_start() unexpectedly failed.');
generateFingerprint accesses the super-global variable $_SERVER.
protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];
generateFingerprint accesses the super-global variable $_SERVER.
protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];
regenerateId accesses the super-global variable $_SESSION.
public function regenerateId()
{
$oldSessionId = $this->getSessionId();
if (version_compare(PHP_VERSION, '7.1.0', '>=')) {
$newSessionId = session_create_id();
destroySession accesses the super-global variable $_SESSION.
public function destroySession()
{
$_SESSION = [];
$this->executeGcNotificationCallback($this->getSessionId(), time());
session_destroy();
forwardSession accesses the super-global variable $_COOKIE.
protected function forwardSession($newSessionId)
{
$oldSessionId = $this->getSessionId();
$this->commitSession();
ini_set('session.use_strict_mode', 0);
generateFingerprint accesses the super-global variable $_SERVER.
protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];
Method regenerateId
has 29 lines of code (exceeds 25 allowed). Consider refactoring.
public function regenerateId()
{
$oldSessionId = $this->getSessionId();
if (version_compare(PHP_VERSION, '7.1.0', '>=')) {
$newSessionId = session_create_id();
Missing class import via use statement (line '150', column '23').
throw new \RuntimeException('session_start() unexpectedly failed.');
Missing class import via use statement (line '348', column '23').
throw new \RuntimeException(
The method regenerateId uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
} else {
session_regenerate_id(false);
$newSessionId = $this->getSessionId();
$this->commitSession();
ini_set('session.use_strict_mode', 0);
Avoid excessively long variable names like $gcNotificationCallback. Keep variable name length under 20.
protected $gcNotificationCallback;
Avoid excessively long variable names like $gcNotificationCallback. Keep variable name length under 20.
callable $gcNotificationCallback = null,
Avoid excessively long variable names like $sessionIdChangeCallback. Keep variable name length under 20.
protected $sessionIdChangeCallback;
Avoid excessively long variable names like $sessionIdChangeCallback. Keep variable name length under 20.
callable $sessionIdChangeCallback = null,
There are no issues that match your filters.