TYPO3  7.6
FooCommand.php
Go to the documentation of this file.
1 <?php
2 
6 
7 class FooCommand extends Command
8 {
9  public $input;
10  public $output;
11 
12  protected function configure()
13  {
14  $this
15  ->setName('foo:bar')
16  ->setDescription('The foo:bar command')
17  ->setAliases(array('afoobar'))
18  ;
19  }
20 
22  {
23  $output->writeln('interact called');
24  }
25 
27  {
28  $this->input = $input;
29  $this->output = $output;
30 
31  $output->writeln('called');
32  }
33 }