DescriptorCommand1.php 646 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Console\Tests\Fixtures;
  11. use Symfony\Component\Console\Command\Command;
  12. class DescriptorCommand1 extends Command
  13. {
  14. protected function configure()
  15. {
  16. $this
  17. ->setName('descriptor:command1')
  18. ->setAliases(array('alias1', 'alias2'))
  19. ->setDescription('command 1 description')
  20. ->setHelp('command 1 help')
  21. ;
  22. }
  23. }