Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | abstract class AbstractForm implements FormInterface |
||
12 | { |
||
13 | /** |
||
14 | * |
||
15 | */ |
||
16 | abstract protected function getAction(): string; |
||
17 | |||
18 | /** |
||
19 | * |
||
20 | */ |
||
21 | abstract protected function getMethod(): string; |
||
22 | |||
23 | /** |
||
24 | * |
||
25 | */ |
||
26 | abstract protected function getFieldControllers(); |
||
27 | |||
28 | /** |
||
29 | * |
||
30 | */ |
||
31 | protected function getFormSubmissionManager(): FormSubmissionManager |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @return array|FormValidatorInterface[] |
||
39 | */ |
||
40 | protected function getFormValidators(): array |
||
45 |