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

install/class/Application.php 1 location

@@ 59-73 (lines=15) @@
56
    /**
57
     * {@inheritdoc}
58
     */
59
    public function run()
60
    {
61
        foreach ($this->runPhases as $action) {
62
            $action();
63
64
            $notifyAction = $action;
65
            if (is_array($action)) {
66
                $notifyAction = $action[1];
67
            }
68
69
            $this->notifyAction('bfw_modules_install_run_'.$notifyAction);
70
        }
71
72
        $this->notifyAction('bfw_modules_install_finish');
73
    }
74
    
75
    protected function installModules()
76
    {

src/class/Application.php 1 location

@@ 349-363 (lines=15) @@
346
     * 
347
     * @return void
348
     */
349
    public function run()
350
    {
351
        foreach ($this->runPhases as $action) {
352
            $action();
353
354
            $notifyAction = $action;
355
            if (is_array($action)) {
356
                $notifyAction = $action[1];
357
            }
358
359
            $this->notifyAction('apprun_'.$notifyAction);
360
        }
361
362
        $this->notifyAction('bfw_run_finish');
363
    }
364
365
    /**
366
     * Connect to memcache(d) server with the class declared in config file