Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class Report implements ReportInterface |
||
16 | { |
||
17 | |||
18 | protected $formatter; |
||
19 | 1 | ||
20 | public function __construct(ReportInterface $report) |
||
21 | { |
||
22 | 1 | $this->formatter = Factory::makeFormatter($report); |
|
23 | } |
||
24 | |||
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | */ |
||
29 | public function __toString(): string |
||
33 | } |
||
34 | } |
||
35 |