Total Complexity | 6 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class LinkedCommand extends Command |
||
22 | { |
||
23 | protected function configure(): void |
||
24 | { |
||
25 | $this->setName('linked'); |
||
26 | $this->setDescription('List all linked packages'); |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
57 | } |
||
58 | } |
||
59 |