FooWithoutAliasCommand.php 486 B

123456789101112131415161718192021
  1. <?php
  2. use Symfony\Component\Console\Command\Command;
  3. use Symfony\Component\Console\Input\InputInterface;
  4. use Symfony\Component\Console\Output\OutputInterface;
  5. class FooWithoutAliasCommand extends Command
  6. {
  7. protected function configure()
  8. {
  9. $this
  10. ->setName('foo')
  11. ->setDescription('The foo command')
  12. ;
  13. }
  14. protected function execute(InputInterface $input, OutputInterface $output)
  15. {
  16. $output->writeln('called');
  17. }
  18. }