Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
7 | abstract class AbstractInput extends AbstractStandardFormControl implements FormFieldInterface |
||
8 | { |
||
9 | protected string $type = 'text'; |
||
10 | |||
11 | protected ?string $dataList = null; |
||
12 | |||
13 | /** |
||
14 | * Get the value of type |
||
15 | * |
||
16 | * @return string |
||
17 | */ |
||
18 | public function getType(): string |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return $this |
||
25 | */ |
||
26 | protected function resolveAttributes(): AbstractInput |
||
34 | } |
||
35 | |||
36 | protected function renderHtmlMarkup(): string |
||
41 |