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