Conditions | 4 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
49 | 1 | protected function timersStrings(): string |
|
50 | { |
||
51 | 1 | $r = ''; |
|
52 | 1 | foreach ($this->report->getTimersReports() as $report) { |
|
53 | 1 | if ($report instanceof TimerReport && DEFAULT_NAME === $report->getName()) { |
|
54 | 1 | $this->elapsed = (string)$report; |
|
55 | } else { |
||
56 | 1 | $r .= $report; |
|
57 | } |
||
58 | } |
||
59 | 1 | return $r; |
|
60 | } |
||
62 |