Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 57.14% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | abstract class AbstractRenderer implements RendererInterface |
||
|
|||
14 | { |
||
15 | private Form $form; |
||
16 | |||
17 | 1 | public function __construct(Form $form = null) |
|
20 | } |
||
21 | |||
22 | abstract public function output(): mixed; |
||
23 | |||
24 | public function setForm(Form $form): Form |
||
28 | } |
||
29 | |||
30 | 1 | public function getForm(): Form |
|
35 |
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.