| Conditions | 4 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 54 | protected function timersStrings(ProfilerReport $report): string |
||
| 55 | { |
||
| 56 | 3 | $r = ''; |
|
| 57 | foreach ($report->getTimersReports() as $timerReport) { |
||
| 58 | 3 | if ($timerReport instanceof TimerReport && DEFAULT_NAME === $timerReport->getName()) { |
|
| 59 | 3 | $this->elapsed = (string)$timerReport; |
|
| 60 | 3 | // $r .= $timerReport; |
|
| 61 | 3 | } else { |
|
| 62 | $r .= $timerReport; |
||
| 63 | } |
||
| 64 | 1 | } |
|
| 65 | return $r; |
||
| 66 | } |
||
| 68 |