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

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

src/Console/Commands/ModuleMigrateRefreshCommand.php 1 location

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

src/Console/Commands/ModuleMigrateResetCommand.php 1 location

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