1 | <?php |
||
12 | final class ListAliasesCommand extends BaseCommand |
||
13 | { |
||
14 | /** |
||
15 | * @inheritDoc |
||
16 | */ |
||
17 | protected function configure() |
||
18 | { |
||
19 | $this->setName('aliases'); |
||
20 | $this->setDescription('List currently defined aliases'); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @inheritDoc |
||
25 | * @codeCoverageIgnore |
||
26 | */ |
||
27 | protected function execute(InputInterface $input, OutputInterface $output) |
||
50 | } |
||
51 |