From 826615a830fee0c70c9d1d240ba7a9ef21070008 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 11 Mar 2024 08:10:44 +0100 Subject: [PATCH] keep use statement for the Response class --- quick_tour/flex_recipes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_tour/flex_recipes.rst b/quick_tour/flex_recipes.rst index c058008b84a..856b4271205 100644 --- a/quick_tour/flex_recipes.rst +++ b/quick_tour/flex_recipes.rst @@ -80,7 +80,7 @@ Thanks to Flex, after one command, you can start using Twig immediately: namespace App\Controller; use Symfony\Component\Routing\Attribute\Route; - - use Symfony\Component\HttpFoundation\Response; + use Symfony\Component\HttpFoundation\Response; + use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; - class DefaultController