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