mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-03 21:34:59 +00:00
Replace deprecated extends Controller by AbstractController
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user