diff --git a/app/Console/Stubs/Modules/command.stub b/app/Console/Stubs/Modules/command.stub index 95145d84b..6dbc129ec 100644 --- a/app/Console/Stubs/Modules/command.stub +++ b/app/Console/Stubs/Modules/command.stub @@ -3,8 +3,6 @@ namespace $NAMESPACE$; use Illuminate\Console\Command; -use Symfony\Component\Console\Input\InputOption; -use Symfony\Component\Console\Input\InputArgument; class $CLASS$ extends Command { @@ -22,16 +20,6 @@ class $CLASS$ extends Command */ protected $description = 'Command description.'; - /** - * Create a new command instance. - * - * @return void - */ - public function __construct() - { - parent::__construct(); - } - /** * Execute the console command. * @@ -41,28 +29,4 @@ class $CLASS$ extends Command { // } - - /** - * Get the console command arguments. - * - * @return array - */ - protected function getArguments() - { - return [ - ['example', InputArgument::REQUIRED, 'An example argument.'], - ]; - } - - /** - * Get the console command options. - * - * @return array - */ - protected function getOptions() - { - return [ - ['example', null, InputOption::VALUE_OPTIONAL, 'An example option.', null], - ]; - } }