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

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

src/Console/Commands/ModuleSeedCommand.php 1 location

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