Replace deprecated extends Controller by AbstractController

This commit is contained in:
2021-02-01 18:17:33 +01:00
parent 9f54665836
commit 4f90561362
3 changed files with 13 additions and 12 deletions

View File

@@ -20,15 +20,16 @@
namespace Chill\CustomFieldsBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
/**
* Controller for the custom fields configuration section (in
* the admin)
* Class AdminController
* Controller for the custom fields configuration section (in admin section)
*
* @package Chill\CustomFieldsBundle\Controller
*/
class AdminController extends Controller
class AdminController extends AbstractController
{
public function indexAction()
{