Conditions | 5 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 5.0729 |
Changes | 0 |
1 | <?php |
||
39 | 2 | protected function countersStrings(ProfilerReport $report): string |
|
40 | { |
||
41 | 2 | $r = ''; |
|
42 | 2 | foreach ($report->getCountersReports() as $countersReport) { |
|
43 | 2 | if ($countersReport instanceof SimpleCounterReport && DEFAULT_NAME === $countersReport->getName()) { |
|
44 | $r .= $countersReport->isStarted() ? $countersReport : ''; |
||
45 | } else { |
||
46 | 2 | $r .= $countersReport; |
|
47 | } |
||
48 | } |
||
49 | 2 | return $r; |
|
50 | } |
||
70 |