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/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

src/Console/Commands/ModuleMigrateCommand.php 1 location

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