diff --git a/modules/system/console/OctoberDown.php b/modules/system/console/OctoberDown.php index a013acf53..81ffedbca 100644 --- a/modules/system/console/OctoberDown.php +++ b/modules/system/console/OctoberDown.php @@ -49,14 +49,6 @@ class OctoberDown extends Command ; } - /** - * Get the console command arguments. - */ - protected function getArguments() - { - return []; - } - /** * Get the console command options. */ diff --git a/modules/system/console/OctoberFresh.php b/modules/system/console/OctoberFresh.php index 57b95b869..ec002164d 100644 --- a/modules/system/console/OctoberFresh.php +++ b/modules/system/console/OctoberFresh.php @@ -57,14 +57,6 @@ class OctoberFresh extends Command } } - /** - * Get the console command arguments. - */ - protected function getArguments() - { - return []; - } - /** * Get the console command options. */ diff --git a/modules/system/console/OctoberInstall.php b/modules/system/console/OctoberInstall.php index 7413f1969..78b206b94 100644 --- a/modules/system/console/OctoberInstall.php +++ b/modules/system/console/OctoberInstall.php @@ -85,14 +85,6 @@ class OctoberInstall extends Command $this->displayOutro(); } - /** - * Get the console command arguments. - */ - protected function getArguments() - { - return []; - } - /** * Get the console command options. */ diff --git a/modules/system/console/OctoberUp.php b/modules/system/console/OctoberUp.php index a122230ca..87c4a156b 100644 --- a/modules/system/console/OctoberUp.php +++ b/modules/system/console/OctoberUp.php @@ -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 []; - } } diff --git a/modules/system/console/OctoberUpdate.php b/modules/system/console/OctoberUpdate.php index d9f508b0e..9a17e33a1 100644 --- a/modules/system/console/OctoberUpdate.php +++ b/modules/system/console/OctoberUpdate.php @@ -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. */ diff --git a/modules/system/console/PluginInstall.php b/modules/system/console/PluginInstall.php index e6cae5d3c..a9e64d02c 100644 --- a/modules/system/console/PluginInstall.php +++ b/modules/system/console/PluginInstall.php @@ -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 []; - } } diff --git a/modules/system/console/PluginRefresh.php b/modules/system/console/PluginRefresh.php index 187ab0373..08132f3ef 100644 --- a/modules/system/console/PluginRefresh.php +++ b/modules/system/console/PluginRefresh.php @@ -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 []; - } } diff --git a/modules/system/console/ThemeInstall.php b/modules/system/console/ThemeInstall.php index 69c5c4f94..bc7bcc33e 100644 --- a/modules/system/console/ThemeInstall.php +++ b/modules/system/console/ThemeInstall.php @@ -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 []; - } } diff --git a/modules/system/console/ThemeList.php b/modules/system/console/ThemeList.php index d04042f7f..f8dfc8ca7 100644 --- a/modules/system/console/ThemeList.php +++ b/modules/system/console/ThemeList.php @@ -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. */