TYPO3  7.6
FoobarCommand.php
Go to the documentation of this file.
1 <?php
2 
6 
7 class FoobarCommand extends Command
8 {
9  public $input;
10  public $output;
11 
12  protected function configure()
13  {
14  $this
15  ->setName('foobar:foo')
16  ->setDescription('The foobar:foo command')
17  ;
18  }
19 
21  {
22  $this->input = $input;
23  $this->output = $output;
24  }
25 }