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

src/class/Application.php 1 location

@@ 520-528 (lines=9) @@
517
     * 
518
     * @return void
519
     */
520
    public function run()
521
    {
522
        $this->monolog->getLogger()->debug('running framework');
523
        
524
        $runTasks = $this->subjectList->getSubjectForName('ApplicationTasks');
525
        
526
        $runTasks->run();
527
        $runTasks->sendNotify('bfw_run_done');
528
    }
529
530
    /**
531
     * Connect to memcache(d) server with the class declared in config file

src/class/install/Application.php 1 location

@@ 89-98 (lines=10) @@
86
    /**
87
     * {@inheritdoc}
88
     */
89
    public function run()
90
    {
91
        $this->monolog->getLogger()->debug('running framework install');
92
        
93
        $runTasks = $this->subjectList->getSubjectForName('ApplicationTasks');
94
        
95
        $runTasks->setNotifyPrefix('BfwAppModulesInstall');
96
        $runTasks->run();
97
        $runTasks->sendNotify('bfw_modules_install_done');
98
    }
99
    
100
    /**
101
     * Install all modules in the order of the dependency tree.