8000 add better docs for FormTypeExtensionInterface · symfony/symfony@9867491 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9867491

Browse files
authored
add better docs for FormTypeExtensionInterface
1 parent ac88f9a commit 9867491

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Symfony/Component/Form/FormTypeExtensionInterface.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ interface FormTypeExtensionInterface
2424
* This method is called after the extended type has built the form to
2525
* further modify it.
2626
*
27+
* @param array<string, mixed> $options
28+
*
2729
* @see FormTypeInterface::buildForm()
2830
*/
2931
public function buildForm(FormBuilderInterface $builder, array $options);
@@ -34,6 +36,8 @@ public function buildForm(FormBuilderInterface $builder, array $options);
3436
* This method is called after the extended type has built the view to
3537
* further modify it.
3638
*
39+
* @param array<string, mixed> $options
40+
*
3741
* @see FormTypeInterface::buildView()
3842
*/
3943
public function buildView(FormView $view, FormInterface $form, array $options);
@@ -44,6 +48,8 @@ public function buildView(FormView $view, FormInterface $form, array $options);
4448
* This method is called after the extended type has finished the view to
4549
* further modify it.
4650
*
51+
* @param array<string, mixed> $options
52+
*
4753
* @see FormTypeInterface::finishView()
4854
*/
4955
public function finishView(FormView $view, FormInterface $form, array $options);

0 commit comments

Comments
 (0)
0