addArgument( 'argument', InputArgument::REQUIRED ) ->addOption( 'option', null, InputOption::VALUE_REQUIRED ) ; } protected function execute(InputInterface $input, OutputInterface $output): int { echo self::$defaultName . ' ' . $input->getArgument('argument') . ' ' . $input->getOption('option'); return Command::SUCCESS; } }