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

@@ 494-498 (lines=5) @@
491
492
            Symphony::Configuration()->setArray($conf);
493
494
            if (!Symphony::Configuration()->write(CONFIG, $conf['file']['write_mode'])) {
495
                self::__abort(
496
                    'Could not create config file ‘' . CONFIG . '’. Check permission on /manifest.',
497
                $start);
498
            }
499
500
            // Writing htaccess file
501
            Symphony::Log()->info('CONFIGURING: Frontend', E_NOTICE);
@@ 610-612 (lines=3) @@
607
                // Is the language extension enabled?
608
                if (in_array('lang_' . $language['handle'], ExtensionManager::listInstalledHandles())) {
609
                    Symphony::Configuration()->set('lang', $_REQUEST['lang'], 'symphony');
610
                    if (!Symphony::Configuration()->write(CONFIG, $conf['file']['write_mode'])) {
611
                        Symphony::Log()->warning('Could not write default language ‘' . $language['name'] . '’ to config file.');
612
                    }
613
                } else {
614
                    Symphony::Log()->warning('Could not enable the desired language ‘' . $language['name'] . '’.');
615
                }