Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
38 | 1 | protected function execute(InputInterface $input, OutputInterface $output): int |
|
39 | { |
||
40 | 1 | $this->requireConfig(); |
|
41 | |||
42 | 1 | $output->writeln('Starting <fg=blue>Magallanes</>'); |
|
43 | 1 | $output->writeln(''); |
|
44 | |||
45 | 1 | $output->writeln(sprintf('<comment>%s</comment>', var_export($this->runtime->getConfiguration(), true))); |
|
46 | |||
47 | 1 | $output->writeln(''); |
|
48 | 1 | $output->writeln('Finished <fg=blue>Magallanes</>'); |
|
49 | |||
50 | 1 | return self::SUCCESS; |
|
51 | } |
||
53 |