8000 [Form] fixed CollectionType needless option by HeahDude · Pull Request #6448 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Form] fixed CollectionType needless option #6448

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 12, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
[Form] fixed CollectionType needless option
  • Loading branch information
HeahDude committed Apr 9, 2016
commit 4de2ad96a875be0f7e27d88cc20c08cb4bf8b07f
3 changes: 1 addition & 2 deletions reference/forms/types/collection.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ address as its own input text box::
'type' => 'email',
// these options are passed to each "email" type
'options' => array(
'required' => false,
'attr' => array('class' => 'email-box')
'attr' => array('class' => 'email-box')
),
));

Expand Down
0