| 1 | <?php | ||
| 17 | trait ControllerFormTrait | ||
| 18 | { | ||
| 19 | /** | ||
| 20 | * @var FormFactoryInterface | ||
| 21 | */ | ||
| 22 | private $formFactory; | ||
| 23 | |||
| 24 | public function setFormFactory(FormFactoryInterface $formFactory) | ||
| 28 | |||
| 29 | /** | ||
| 30 | * @param string $type | ||
| 31 | * @param mixed $data | ||
| 32 | * @param array $options | ||
| 33 | */ | ||
| 34 | protected function createForm(string $type, $data = null, array $options = []) : FormInterface | ||
| 38 | |||
| 39 | /** | ||
| 40 | * @param mixed $data | ||
| 41 | * @param array $options | ||
| 42 | */ | ||
| 43 | protected function createFormBuilder($data = null, array $options = []) : FormBuilder | ||
| 47 | } | ||
| 48 |