> */ protected function getArguments(): array { return [ ['name', InputOption::VALUE_REQUIRED, 'Name of the Middleware that should be created', 'HandleInertiaRequests'], ]; } /** * Get the console command options. * * @return array> */ protected function getOptions(): array { return [ ['force', null, InputOption::VALUE_NONE, 'Create the class even if the Middleware already exists'], ]; } }