FooHiddenCommand.php 497 B

12345678910111213141516171819202122
  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 FooHiddenCommand extends Command
  6. {
  7. protected function configure()
  8. {
  9. $this
  10. ->setName('foo:hidden')
  11. ->setAliases(['afoohidden'])
  12. ->setHidden(true)
  13. ;
  14. }
  15. protected function execute(InputInterface $input, OutputInterface $output): int
  16. {
  17. return 0;
  18. }
  19. }