From 2dfba6bfd929c27be3386aefa862fbf1cb4fa0ed Mon Sep 17 00:00:00 2001 From: Alexandre Daubois Date: Sun, 22 Jan 2023 12:27:59 +0100 Subject: [PATCH] [Form] Fix alphabetical order of imports --- components/form.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/form.rst b/components/form.rst index 882e720f357..ef1e1ed609c 100644 --- a/components/form.rst +++ b/components/form.rst @@ -579,10 +579,10 @@ method: .. code-block:: php-standalone - use Symfony\Component\HttpFoundation\Request; - use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\Form\Extension\Core\Type\DateType; use Symfony\Component\Form\Extension\Core\Type\TextType; + use Symfony\Component\HttpFoundation\RedirectResponse; + use Symfony\Component\HttpFoundation\Request; // ...