Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class FormValidationException extends BadRequestHttpException |
||
9 | { |
||
10 | /** |
||
11 | * @var FormInterface |
||
12 | */ |
||
13 | private FormInterface $form; |
||
14 | |||
15 | public function __construct(FormInterface $form) |
||
16 | { |
||
17 | parent::__construct(); |
||
18 | $this->form = $form; |
||
19 | } |
||
20 | |||
21 | public function getForm(): FormInterface |
||
24 | } |
||
25 | } |
||
26 |