From e3914460f377b0e5f94a5d3028c5914139c5210b Mon Sep 17 00:00:00 2001 From: Vincent AUBERT Date: Fri, 24 Jul 2015 21:28:02 +0200 Subject: [PATCH] #15331 add infos about deprecated classes to UPGRADE-3.0 --- UPGRADE-3.0.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/UPGRADE-3.0.md b/UPGRADE-3.0.md index f8dcd0b5e4..c819bc8987 100644 --- a/UPGRADE-3.0.md +++ b/UPGRADE-3.0.md @@ -272,6 +272,17 @@ UPGRADE FROM 2.x to 3.0 ```php echo $form->getErrors(true, false); ``` + * The `Symfony\Component\Form\Extension\Core\ChoiceList\ChoiceList` class has been removed in + favor of `Symfony\Component\Form\ChoiceList\ArrayChoiceList`. + + * The `Symfony\Component\Form\Extension\Core\ChoiceList\LazyChoiceList` class has been removed in + favor of `Symfony\Component\Form\ChoiceList\LazyChoiceList`. + + * The `Symfony\Component\Form\Extension\Core\ChoiceList\ObjectChoiceList` class has been removed in + favor of `Symfony\Component\Form\ChoiceList\ArrayChoiceList`. + + * The `Symfony\Component\Form\Extension\Core\ChoiceList\SimpleChoiceList` class has been removed in + favor of `Symfony\Component\Form\ChoiceList\ArrayChoiceList`. ### FrameworkBundle