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-9 lines in 3 locations

src/Console/Commands/ModuleMigrateCommand.php 1 location

@@ 170-178 (lines=9) @@
167
     *
168
     * @return array
169
     */
170
    protected function getOptions()
171
    {
172
        return [
173
            ['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'],
174
            ['force', null, InputOption::VALUE_NONE, 'Force the operation to run while in production.'],
175
            ['pretend', null, InputOption::VALUE_NONE, 'Dump the SQL queries that would be run.'],
176
            ['seed', null, InputOption::VALUE_NONE, 'Indicates if the seed task should be re-run.'],
177
        ];
178
    }
179
}
180

src/Console/Commands/ModuleMigrateRefreshCommand.php 1 location

@@ 102-110 (lines=9) @@
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
            ['seed', null, InputOption::VALUE_NONE, 'Indicates if the seed task should be re-run.'],
109
        ];
110
    }
111
}
112

src/Console/Commands/ModuleMigrateResetCommand.php 1 location

@@ 203-211 (lines=9) @@
200
     *
201
     * @return array
202
     */
203
    protected function getOptions()
204
    {
205
        return [
206
            ['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'],
207
            ['force', null, InputOption::VALUE_NONE, 'Force the operation to run while in production.'],
208
            ['pretend', null, InputOption::VALUE_OPTIONAL, 'Dump the SQL queries that would be run.'],
209
            ['seed', null, InputOption::VALUE_OPTIONAL, 'Indicates if the seed task should be re-run.'],
210
        ];
211
    }
212
}
213