From dae33e402c969606c0c6daa58d99b0caadaf749a Mon Sep 17 00:00:00 2001 From: Silas Joisten Date: Wed, 26 Mar 2025 11:10:39 +0200 Subject: [PATCH] Adds missing use statement --- routing.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/routing.rst b/routing.rst index a41b9bba6a6..7d489912345 100644 --- a/routing.rst +++ b/routing.rst @@ -969,6 +969,7 @@ optional ``priority`` parameter in those routes to control their priority: namespace App\Controller; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; + use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Attribute\Route; class BlogController extends AbstractController