Total Complexity | 8 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Coverage | 87.5% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
12 | class ProfilerReport extends Report implements Strings |
||
13 | { |
||
14 | /** @var array */ |
||
15 | private $reports = []; |
||
16 | |||
17 | 1 | protected static function getFormatter(): FormatterInterface |
|
18 | { |
||
19 | 1 | return Factory::getProfilerReportFormatter(); |
|
20 | } |
||
21 | |||
22 | /** |
||
23 | * @return array |
||
24 | */ |
||
25 | public function getReports(): array |
||
28 | } |
||
29 | |||
30 | 9 | public function buildOn(ReportableInterface $profiler): ReportInterface |
|
43 | } |
||
44 | |||
45 | /** |
||
46 | * @return array |
||
47 | */ |
||
48 | 1 | public function getCountersReports(): array |
|
51 | } |
||
52 | |||
53 | /** |
||
54 | * @return array |
||
55 | */ |
||
56 | 1 | public function getTimersReports(): array |
|
61 |