Conditions | 3 |
Paths | 4 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
31 | 5 | public function __construct(Profiler $reportable) |
|
32 | { |
||
33 | 5 | foreach ($reportable->getCounters() as $counter) { |
|
34 | 5 | $this->reports[static::_COUNTERS][$counter->getName()] = $counter->report(); |
|
35 | } |
||
36 | 5 | foreach ($reportable->getTimers() as $timer) { |
|
37 | 5 | $this->reports[static::_TIMERS][$timer->getName()] = $timer->report(); |
|
38 | } |
||
55 |