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