1 | <?php |
||
19 | class PhpConditionDataObject |
||
20 | { |
||
21 | /** |
||
22 | * @var FormInterface |
||
23 | */ |
||
24 | protected $form; |
||
25 | |||
26 | /** |
||
27 | * @var FormValidatorExecutor |
||
28 | */ |
||
29 | protected $formValidator; |
||
30 | |||
31 | /** |
||
32 | * @param FormInterface $form |
||
33 | * @param FormValidatorExecutor $formValidator |
||
34 | */ |
||
35 | public function __construct(FormInterface $form, FormValidatorExecutor $formValidator) |
||
40 | |||
41 | /** |
||
42 | * @return FormInterface |
||
43 | */ |
||
44 | public function getForm() |
||
48 | |||
49 | /** |
||
50 | * @param FormInterface $form |
||
51 | */ |
||
52 | public function setForm(FormInterface $form) |
||
56 | |||
57 | /** |
||
58 | * @return FormValidatorExecutor |
||
59 | */ |
||
60 | public function getFormValidator() |
||
64 | |||
65 | /** |
||
66 | * @param FormValidatorExecutor $formValidator |
||
67 | */ |
||
68 | public function setFormValidator(FormValidatorExecutor $formValidator) |
||
72 | } |
||
73 |