Replace deprecated extends Controller by AbstractController

This commit is contained in:
2021-02-01 18:17:33 +01:00
parent 99e2712cbc
commit 8029b9b8ff
6 changed files with 23 additions and 20 deletions

View File

@@ -20,15 +20,15 @@
namespace Chill\EventBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
/**
* Controller for the event configuration section (in
* the admin)
* Class AdminController
* Controller for the event configuration section (in admin section)
*
* @package Chill\EventBundle\Controller
*/
class AdminController extends Controller
class AdminController extends AbstractController
{
public function indexAction()
{