mikecbrant/php-ultimate-sessions

View on GitHub
src/UltimateSessions/UltimateSessionManager.php

Summary

Maintainability
A
1 hr
Test Coverage
A
100%

Showing 3 of 22 total issues

regenerateId accesses the super-global variable $_SESSION.
Wontfix

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.
Wontfix

protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];

generateFingerprint accesses the super-global variable $_SERVER.
Wontfix

protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];

generateFingerprint accesses the super-global variable $_SERVER.
Wontfix

protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];

writeMetadata accesses the super-global variable $_SESSION.
Wontfix

protected function writeMetadata() {
$_SESSION[self::METADATA_KEY] = $this->metadata;
}

startSession accesses the super-global variable $_SESSION.
Wontfix

public function startSession()
{
$result = session_start();
if ($result === false) {
throw new \RuntimeException('session_start() unexpectedly failed.');

regenerateId accesses the super-global variable $_COOKIE.
Wontfix

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.
Wontfix

public function startSession()
{
$result = session_start();
if ($result === false) {
throw new \RuntimeException('session_start() unexpectedly failed.');

generateFingerprint accesses the super-global variable $_SERVER.
Wontfix

protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];

generateFingerprint accesses the super-global variable $_SERVER.
Wontfix

protected function generateFingerprint()
{
$fingerprint = '';
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$fingerprint .= $_SERVER['HTTP_USER_AGENT'];

regenerateId accesses the super-global variable $_SESSION.
Wontfix

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.
Wontfix

public function destroySession()
{
$_SESSION = [];
$this->executeGcNotificationCallback($this->getSessionId(), time());
session_destroy();

forwardSession accesses the super-global variable $_COOKIE.
Wontfix

protected function forwardSession($newSessionId)
{
$oldSessionId = $this->getSessionId();
$this->commitSession();
ini_set('session.use_strict_mode', 0);

generateFingerprint accesses the super-global variable $_SERVER.
Wontfix

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.
Open

public function regenerateId()
{
$oldSessionId = $this->getSessionId();
if (version_compare(PHP_VERSION, '7.1.0', '>=')) {
$newSessionId = session_create_id();
Severity: Minor
Found in src/UltimateSessions/UltimateSessionManager.php - About 1 hr to fix

    Missing class import via use statement (line '150', column '23').
    Open

    throw new \RuntimeException('session_start() unexpectedly failed.');

    Missing class import via use statement (line '348', column '23').
    Open

    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.
    Wontfix

    } 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.
    Wontfix

    protected $gcNotificationCallback;

    Avoid excessively long variable names like $gcNotificationCallback. Keep variable name length under 20.
    Wontfix

    callable $gcNotificationCallback = null,

    Avoid excessively long variable names like $sessionIdChangeCallback. Keep variable name length under 20.
    Wontfix

    protected $sessionIdChangeCallback;

    Avoid excessively long variable names like $sessionIdChangeCallback. Keep variable name length under 20.
    Wontfix

    callable $sessionIdChangeCallback = null,
    Category
    Status