Additional information} {--f|force : Force the operation to run and ignore production warnings and confirmation questions.}'; /** * @var string The console command description. */ protected $description = '{{ description }}'; /** * Execute the console command. * @return void */ public function handle() { $this->output->writeln('Hello world!'); } /** * Provide autocomplete suggestions for the "myCustomArgument" argument */ // public function suggestMyCustomArgumentValues(): array // { // return ['value', 'another']; // } }