From 5f9555c61970832ea2a3f1672ab4c21324c14ba5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Tue, 27 Feb 2024 16:44:20 +0100 Subject: [PATCH] Update controller base class name --- Controller/UserController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Controller/UserController.php b/Controller/UserController.php index d4cdc7a..8dc6d65 100644 --- a/Controller/UserController.php +++ b/Controller/UserController.php @@ -14,9 +14,9 @@ namespace Rapsys\AirBundle\Controller; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; -use Rapsys\UserBundle\Controller\DefaultController; +use Rapsys\UserBundle\Controller\UserController as BaseUserController; -class UserController extends DefaultController { +class UserController extends BaseUserController { /** * {@inheritdoc} */ -- 2.41.0