Replace deprecated extends Controller by AbstractController

This commit is contained in:
2021-02-01 18:17:33 +01:00
parent 041627cd77
commit 22efcf0c1d
5 changed files with 14 additions and 13 deletions

View File

@@ -2,8 +2,8 @@
namespace Chill\ActivityBundle\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\ActivityBundle\Entity\ActivityReason;
@@ -13,7 +13,7 @@ use Chill\ActivityBundle\Form\ActivityReasonType;
* ActivityReason controller.
*
*/
class ActivityReasonController extends Controller
class ActivityReasonController extends AbstractController
{
/**