Total Complexity | 7 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | class ProfilerReport extends Report implements StringsInterface |
||
15 | { |
||
16 | /** @var array */ |
||
17 | private $reports = []; |
||
18 | |||
19 | /** |
||
20 | * @return array |
||
21 | */ |
||
22 | 2 | public function getReports(): array |
|
23 | { |
||
24 | 2 | return $this->reports; |
|
25 | } |
||
26 | |||
27 | /** |
||
28 | * ProfilerReport constructor. |
||
29 | * @param Profiler $reportable |
||
30 | */ |
||
31 | 5 | public function __construct(Profiler $reportable) |
|
38 | } |
||
39 | 5 | } |
|
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | 1 | public function __toString(): string |
|
53 | } |
||
54 | } |
||
55 |