GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 4-4 lines in 2 locations

src/Http/Session.php 2 locations

@@ 46-49 (lines=4) @@
43
44
        // https://paragonie.com/blog/2015/04/fast-track-safe-and-secure-php-sessions
45
        // Make sure we have a canary set
46
        if (!isset($_SESSION['canary'])) {
47
            session_regenerate_id(true);
48
            $_SESSION['canary'] = time();
49
        }
50
        // Regenerate session ID every five minutes:
51
        if ($_SESSION['canary'] < time() - 300) {
52
            session_regenerate_id(true);
@@ 51-54 (lines=4) @@
48
            $_SESSION['canary'] = time();
49
        }
50
        // Regenerate session ID every five minutes:
51
        if ($_SESSION['canary'] < time() - 300) {
52
            session_regenerate_id(true);
53
            $_SESSION['canary'] = time();
54
        }
55
    }
56
57
    public function set($key, $value)