TYPO3  7.6
FooSubnamespaced2Command.php
Go to the documentation of this file.
1 <?php
2 
6 
8 {
9  public $input;
10  public $output;
11 
12  protected function configure()
13  {
14  $this
15  ->setName('foo:go:bret')
16  ->setDescription('The foo:bar:go command')
17  ->setAliases(array('foobargo'))
18  ;
19  }
20 
22  {
23  $this->input = $input;
24  $this->output = $output;
25  }
26 }