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

src/Console/Commands/ModuleMigrateRollbackCommand.php 1 location

@@ 102-109 (lines=8) @@
99
     *
100
     * @return array
101
     */
102
    protected function getOptions()
103
    {
104
        return [
105
            ['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'],
106
            ['force', null, InputOption::VALUE_NONE, 'Force the operation to run while in production.'],
107
            ['pretend', null, InputOption::VALUE_NONE, 'Dump the SQL queries that would be run.'],
108
        ];
109
    }
110
}
111

src/Console/Commands/ModuleSeedCommand.php 1 location

@@ 126-133 (lines=8) @@
123
     *
124
     * @return array
125
     */
126
    protected function getOptions()
127
    {
128
        return [
129
            ['class', null, InputOption::VALUE_OPTIONAL, 'The class name of the module\'s root seeder.'],
130
            ['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to seed.'],
131
            ['force', null, InputOption::VALUE_NONE, 'Force the operation to run while in production.'],
132
        ];
133
    }
134
}
135