8000 [Form] Fix missing notice for deprecated `type` by nicolas-grekas · Pull Request #16231 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Form] Fix missing notice for deprecated type #16231

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

Closed
wants to merge 1 commit into from
Closed
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
Diff view
[Form] Fix missing notice for deprecated type
  • Loading branch information
nicolas-grekas committed Oct 13, 2015
commit 87fdffa0fc7b6569c2d2786cdcd7366c5ee9389f
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ public function configureOptions(OptionsResolver $resolver)
'delete_empty' => false,
));

$resolver->setNormalizer('type', $typeNormalizer);
$resolver->setNormalizer('options', $optionsNormalizer);
$resolver->setNormalizer('entry_options', $entryOptionsNormalizer);
}
Expand Down
0