Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | 4 | private function display(): void |
|
27 | { |
||
28 | 4 | echo 'Available sections:' . PHP_EOL; |
|
29 | 4 | $titles = $this->config->getSections()->getTitles(); |
|
30 | 4 | echo $this->formatList($titles); |
|
31 | 4 | $scopes = $this->config->getScopes(); |
|
32 | 4 | if (!empty($scopes)) { |
|
33 | 1 | echo PHP_EOL . 'Available scopes:' . PHP_EOL; |
|
34 | 1 | echo $this->formatList($scopes); |
|
35 | } |
||
55 |