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

@@ -21,7 +21,7 @@ namespace Chill\EventBundle\Controller;
use ArrayIterator;
use Chill\EventBundle\Entity\Event;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Chill\EventBundle\Entity\Participation;
@@ -36,7 +36,7 @@ use Symfony\Component\Form\Extension\Core\Type\CollectionType;
* @package Chill\EventBundle\Controller
* @author Julien Fastré <julien.fastre@champs-libres.coop>
*/
class ParticipationController extends Controller
class ParticipationController extends AbstractController
{
/**