| Total Complexity | 7 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class SitesListCommand extends AbstractCommand |
||
| 13 | { |
||
| 14 | protected function configure(): void |
||
| 15 | { |
||
| 16 | parent::configure(); |
||
| 17 | |||
| 18 | $this |
||
| 19 | ->setName('sites:list') |
||
| 20 | ->addOption('json', null, InputOption::VALUE_NONE, 'Output as JSON') |
||
| 21 | ->setDescription('List all sites') |
||
| 22 | ; |
||
| 23 | } |
||
| 24 | |||
| 25 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 43 | } |
||
| 44 | |||
| 45 | protected function getSites(): array |
||
| 63 |