Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class DisplayRenderer implements StyleRendererInterface |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * @var Display|null |
||
18 | */ |
||
19 | private $display; |
||
20 | |||
21 | 56 | public function __construct(?Display $display = null) |
|
22 | { |
||
23 | 56 | $this->display = $display; |
|
24 | 56 | } |
|
25 | |||
26 | 21 | public function render(string $text): string |
|
33 | } |
||
34 | } |
||
35 |