Remove methods which are identical to parent method

This commit is contained in:
Nathan van der Werf 2018-08-15 18:30:03 +02:00
parent 742a5f415b
commit 11e8a3a92c
9 changed files with 0 additions and 83 deletions

View File

@ -49,14 +49,6 @@ class OctoberDown extends Command
;
}
/**
* Get the console command arguments.
*/
protected function getArguments()
{
return [];
}
/**
* Get the console command options.
*/

View File

@ -57,14 +57,6 @@ class OctoberFresh extends Command
}
}
/**
* Get the console command arguments.
*/
protected function getArguments()
{
return [];
}
/**
* Get the console command options.
*/

View File

@ -85,14 +85,6 @@ class OctoberInstall extends Command
$this->displayOutro();
}
/**
* Get the console command arguments.
*/
protected function getArguments()
{
return [];
}
/**
* Get the console command options.
*/

View File

@ -43,20 +43,4 @@ class OctoberUp extends Command
->update()
;
}
/**
* Get the console command arguments.
*/
protected function getArguments()
{
return [];
}
/**
* Get the console command options.
*/
protected function getOptions()
{
return [];
}
}

View File

@ -112,14 +112,6 @@ class OctoberUpdate extends Command
$this->call('october:up');
}
/**
* Get the console command arguments.
*/
protected function getArguments()
{
return [];
}
/**
* Get the console command options.
*/

View File

@ -75,13 +75,4 @@ class PluginInstall extends Command
['name', InputArgument::REQUIRED, 'The name of the plugin. Eg: AuthorName.PluginName'],
];
}
/**
* Get the console command options.
* @return array
*/
protected function getOptions()
{
return [];
}
}

View File

@ -77,13 +77,4 @@ class PluginRefresh extends Command
['name', InputArgument::REQUIRED, 'The name of the plugin. Eg: AuthorName.PluginName'],
];
}
/**
* Get the console command options.
* @return array
*/
protected function getOptions()
{
return [];
}
}

View File

@ -143,13 +143,4 @@ class ThemeInstall extends Command
['dirName', InputArgument::OPTIONAL, 'Destination directory name for the theme installation.'],
];
}
/**
* Get the console command options.
* @return array
*/
protected function getOptions()
{
return [];
}
}

View File

@ -65,14 +65,6 @@ class ThemeList extends Command
$this->info(PHP_EOL."[*] Active [-] Installed [ ] Not installed");
}
/**
* Get the console command arguments.
*/
protected function getArguments()
{
return [];
}
/**
* Get the console command options.
*/