BarBucCommand.php 177 B

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