Conditions | 5 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 5 |
Changes | 0 |
1 | <?php |
||
33 | 1 | protected function countersStrings(): string |
|
34 | { |
||
35 | 1 | $r = ''; |
|
36 | 1 | foreach ($this->report->getCountersReports() as $report) { |
|
37 | 1 | if ($report instanceof CounterReport && DEFAULT_NAME === $report->getName()) { |
|
38 | 1 | $r .= $report->isStarted() ? $report : ''; |
|
39 | } else { |
||
40 | 1 | $r .= $report; |
|
41 | } |
||
42 | } |
||
43 | 1 | return $r; |
|
44 | } |
||
62 |