mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-04 05:44:58 +00:00
Replace deprecated extends Controller by AbstractController
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
|
||||
namespace Chill\MainBundle\Controller;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||||
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
||||
|
||||
use Chill\MainBundle\Entity\Center;
|
||||
@@ -11,10 +11,11 @@ use Chill\MainBundle\Form\CenterType;
|
||||
|
||||
|
||||
/**
|
||||
* Center controller.
|
||||
* Class CenterController
|
||||
*
|
||||
* @package Chill\MainBundle\Controller
|
||||
*/
|
||||
class CenterController extends Controller
|
||||
class CenterController extends AbstractController
|
||||
{
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user