Yaffs site version 1.1
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / Foo6Command.php
1 <?php
2
3
4 use Symfony\Component\Console\Command\Command;
5
6 class Foo6Command extends Command
7 {
8     protected function configure()
9     {
10         $this->setName('0foo:bar')->setDescription('0foo:bar command');
11     }
12 }