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\Status;
use Chill\EventBundle\Form\StatusType;
/**
* Status controller.
* Class StatusController
*
* @package Chill\EventBundle\Controller
*/
class StatusController extends Controller
class StatusController extends AbstractController
{
/**