FooSameCaseLowercaseCommand.php 226B

123456789101112
  1. <?php
  2. use Symfony\Component\Console\Command\Command;
  3. class FooSameCaseLowercaseCommand extends Command
  4. {
  5. protected function configure()
  6. {
  7. $this->setName('foo:bar')->setDescription('foo:bar command');
  8. }
  9. }