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);
@@ 613-615 (lines=3) @@
610
                // Is the language extension enabled?
611
                if (in_array('lang_' . $language['handle'], ExtensionManager::listInstalledHandles())) {
612
                    Symphony::Configuration()->set('lang', $_REQUEST['lang'], 'symphony');
613
                    if (!Symphony::Configuration()->write(CONFIG, $conf['file']['write_mode'])) {
614
                        Symphony::Log()->warning('Could not write default language ‘' . $language['name'] . '’ to config file.');
615
                    }
616
                } else {
617
                    Symphony::Log()->warning('Could not enable the desired language ‘' . $language['name'] . '’.');
618
                }