diff --git a/src/Command/FetchTweetsCommand.php b/src/Command/FetchTweetsCommand.php index b0a11f4..9b41512 100644 --- a/src/Command/FetchTweetsCommand.php +++ b/src/Command/FetchTweetsCommand.php @@ -17,23 +17,12 @@ class FetchTweetsCommand extends Command { $this ->setDescription('Add a short description for your command') - ->addArgument('arg1', InputArgument::OPTIONAL, 'Argument description') - ->addOption('option1', null, InputOption::VALUE_NONE, 'Option description') ; } protected function execute(InputInterface $input, OutputInterface $output) { $io = new SymfonyStyle($input, $output); - $arg1 = $input->getArgument('arg1'); - - if ($arg1) { - $io->note(sprintf('You passed an argument: %s', $arg1)); - } - - if ($input->getOption('option1')) { - // ... - } $io->success('You have a new command! Now make it your own! Pass --help to see your options.'); }