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

core/Pimf/Controller/Core.php 2 locations

@@ 86-96 (lines=11) @@
83
        clearstatcache();
84
    }
85
86
    public function createSessionTableCliAction()
87
    {
88
        $std = new Std();
89
        $type = $std->read('database type [mysql|sqlite]', '(mysql|sqlite)');
90
91
        if ($this->createTable($type, 'session')) {
92
            echo 'Session table successfully created.' . PHP_EOL;
93
        } else {
94
            echo 'Problems creating session table!' . PHP_EOL;
95
        }
96
    }
97
98
    public function createCacheTableCliAction()
99
    {
@@ 98-108 (lines=11) @@
95
        }
96
    }
97
98
    public function createCacheTableCliAction()
99
    {
100
        $std = new Std();
101
        $type = $std->read('database type [mysql|sqlite]', '(mysql|sqlite)');
102
103
        if ($this->createTable($type, 'cache')) {
104
            echo 'Cache table successfully created.' . PHP_EOL;
105
        } else {
106
            echo 'Problems creating cache table!' . PHP_EOL;
107
        }
108
    }
109
110
    /**
111
     * @param string $type