Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | trait Reportable |
||
14 | { |
||
15 | /** @var ReportInterface */ |
||
16 | protected $reportObject; |
||
17 | |||
18 | /** |
||
19 | * @return ReportInterface |
||
20 | */ |
||
21 | 9 | public function getReport(): ReportInterface |
|
29 | } |
||
30 | |||
31 | /** |
||
32 | * Makes all necessary actions before report |
||
33 | */ |
||
34 | 7 | protected function prepareForReport(): void |
|
38 |