Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | abstract class Formatter implements ReportFormatter |
||
17 | { |
||
18 | /** @var ReportInterface */ |
||
19 | protected $report; |
||
20 | /** @var Theme */ |
||
21 | protected $theme; |
||
22 | |||
23 | 9 | public function __construct(ReportInterface $report) |
|
28 | 9 | } |
|
29 | |||
30 | abstract public function setStyles(): void; |
||
31 | |||
32 | abstract public function getString(): string; |
||
33 | } |
||
34 |