File tree 2 files changed +20
-2
lines changed
stubs/Symfony/Component/Form
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -9,4 +9,22 @@ namespace Symfony\Component\Form;
9
9
*/
10
10
abstract class AbstractType implements FormTypeInterface
11
11
{
12
+
13
+ /**
14
+ * @param array<string, mixed> $options
15
+ */
16
+ public function buildForm(FormBuilderInterface $builder, array $options): void;
17
+
18
+ /**
19
+ * @param FormInterface<TData> $form
20
+ * @param array<string, mixed> $options
21
+ */
22
+ public function buildView(FormView $view, FormInterface $form, array $options): void;
23
+
24
+ /**
25
+ * @param FormInterface<TData> $form
26
+ * @param array<string, mixed> $options
27
+ */
28
+ public function finishView(FormView $view, FormInterface $form, array $options): void;
29
+
12
30
}
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ interface FormTypeInterface
13
13
public function buildForm(FormBuilderInterface $builder, array $options): void;
14
14
15
15
/**
16
- * @phpstan- param FormInterface<TData> $form
16
+ * @param FormInterface<TData> $form
17
17
* @param array<string, mixed> $options
18
18
*/
19
19
public function buildView(FormView $view, FormInterface $form, array $options): void;
20
20
21
21
/**
22
- * @phpstan- param FormInterface<TData> $form
22
+ * @param FormInterface<TData> $form
23
23
* @param array<string, mixed> $options
24
24
*/
25
25
public function finishView(FormView $view, FormInterface $form, array $options): void;
You can’t perform that action at this time.
0 commit comments