Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | abstract class AbstractRenderer implements RendererInterface |
||
11 | { |
||
12 | private Form $form; |
||
13 | |||
14 | 1 | public function __construct(Form $form = null) |
|
17 | } |
||
18 | |||
19 | abstract public function output(): string; |
||
20 | |||
21 | 1 | public function setForm(Form $form): Form |
|
25 | } |
||
26 | |||
27 | 1 | public function getForm(): Form |
|
32 |