Yaffs site version 1.1
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / Foo1Command.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 Foo1Command extends Command
8 {
9     public $input;
10     public $output;
11
12     protected function configure()
13     {
14         $this
15             ->setName('foo:bar1')
16             ->setDescription('The foo:bar1 command')
17             ->setAliases(array('afoobar1'))
18         ;
19     }
20
21     protected function execute(InputInterface $input, OutputInterface $output)
22     {
23         $this->input = $input;
24         $this->output = $output;
25     }
26 }