Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | abstract class ReportFormatter implements Formatter, StringConstants |
||
16 | { |
||
17 | /** @var ReportInterface */ |
||
18 | protected $report; |
||
19 | |||
20 | /** |
||
21 | * Formatter constructor. |
||
22 | * @param ReportInterface $report |
||
23 | */ |
||
24 | 14 | public function __construct(ReportInterface $report) |
|
27 | 14 | } |
|
28 | |||
29 | /** {@inheritdoc} */ |
||
30 | abstract public function getString(): string; |
||
31 | } |
||
32 |