Total Complexity | 7 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 5 | ||
Bugs | 1 | Features | 1 |
1 | <?php declare(strict_types=1); |
||
10 | class ProfilerReport extends AbstractReport implements Strings |
||
11 | { |
||
12 | /** @var array */ |
||
13 | private $reports = []; |
||
14 | |||
15 | /** |
||
16 | * @return array |
||
17 | */ |
||
18 | 1 | public function getReports(): array |
|
19 | { |
||
20 | 1 | return $this->reports; |
|
21 | } |
||
22 | |||
23 | /** {@inheritDoc} |
||
24 | * @throws \Exception |
||
25 | */ |
||
26 | 3 | protected function extractDataFrom(AbstractReportable $reportable = null): void |
|
34 | } |
||
35 | } |
||
36 | 3 | } |
|
37 | |||
38 | /** |
||
39 | * @return array |
||
40 | */ |
||
41 | 3 | public function getCountersReports(): array |
|
44 | } |
||
45 | |||
46 | /** |
||
47 | * @return array |
||
48 | */ |
||
49 | 3 | public function getTimersReports(): array |
|
54 |