Yaffs site version 1.1
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / Foo2Command.php
1 <?php
2
3 use Symfony\Component\Console\Command\Command;
4 use Symfony\Component\Console\Input\InputInterface;
5 use Symfony\Component\Console\Output\OutputInterface;
6
7 class Foo2Command extends Command
8 {
9     protected function configure()
10     {
11         $this
12             ->setName('foo1:bar')
13             ->setDescription('The foo1:bar command')
14             ->setAliases(array('afoobar2'))
15         ;
16     }
17
18     protected function execute(InputInterface $input, OutputInterface $output)
19     {
20     }
21 }