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 = 3-3 lines in 2 locations

install/lib/class.updater.php 1 location

@@ 84-86 (lines=3) @@
81
        public function run()
82
        {
83
            // Initialize log
84
            if (is_null(Symphony::Log()) || !file_exists(Symphony::Log()->getLogPath())) {
85
                self::__render(new UpdaterPage('missing-log'));
86
            }
87
88
            // Get available migrations. This will only contain the migrations
89
            // that are applicable to the current install.

install/lib/class.installer.php 1 location

@@ 99-101 (lines=3) @@
96
        public function run()
97
        {
98
            // Make sure a log file is available
99
            if (is_null(Symphony::Log()) || !file_exists(Symphony::Log()->getLogPath())) {
100
                self::__render(new InstallerPage('missing-log'));
101
            }
102
103
            // Check essential server requirements
104
            $errors = self::__checkRequirements();