1 | <?php |
||
13 | class ListCommand extends Command |
||
14 | { |
||
15 | /** |
||
16 | * Command name |
||
17 | * @var string |
||
18 | */ |
||
19 | const NAME = 'ls'; |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function configure() |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function execute(InputInterface $input, OutputInterface $output) |
||
57 | |||
58 | /** |
||
59 | * Output table |
||
60 | * @param $rows |
||
61 | * @param OutputInterface $output |
||
62 | */ |
||
63 | protected function outputResult($rows, OutputInterface $output) |
||
70 | } |
||
71 |