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

install/lib/class.installer.php 2 locations

@@ 502-506 (lines=5) @@
499
500
            Symphony::Configuration()->setArray($conf);
501
502
            if (!Symphony::Configuration()->write(CONFIG, $conf['file']['write_mode'])) {
503
                self::__abort(
504
                    'Could not create config file ‘' . CONFIG . '’. Check permission on /manifest.',
505
                $start);
506
            }
507
508
            // Writing htaccess file
509
            Symphony::Log()->info('CONFIGURING: Frontend', E_NOTICE);
@@ 618-620 (lines=3) @@
615
                // Is the language extension enabled?
616
                if (in_array('lang_' . $language['handle'], ExtensionManager::listInstalledHandles())) {
617
                    Symphony::Configuration()->set('lang', $_REQUEST['lang'], 'symphony');
618
                    if (!Symphony::Configuration()->write(CONFIG, $conf['file']['write_mode'])) {
619
                        Symphony::Log()->warning('Could not write default language ‘' . $language['name'] . '’ to config file.');
620
                    }
621
                } else {
622
                    Symphony::Log()->warning('Could not enable the desired language ‘' . $language['name'] . '’.');
623
                }