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

@@ -2,18 +2,19 @@
namespace Chill\EventBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Chill\EventBundle\Entity\EventType;
use Chill\EventBundle\Form\EventTypeType;
/**
* EventType controller.
* Class EventTypeController
*
* @package Chill\EventBundle\Controller
*/
class EventTypeController extends Controller
class EventTypeController extends AbstractController
{
/**