Skip to content

Commit 890c25c

Browse files
committed
changing 2 missed base classes
1 parent b0dba21 commit 890c25c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Controller/RegistrationController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use FOS\UserBundle\FOSUserEvents;
1919
use FOS\UserBundle\Model\UserInterface;
2020
use FOS\UserBundle\Model\UserManagerInterface;
21-
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
21+
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
2222
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
2323
use Symfony\Component\HttpFoundation\RedirectResponse;
2424
use Symfony\Component\HttpFoundation\Request;
@@ -34,7 +34,7 @@
3434
* @author Thibault Duplessis <thibault.duplessis@gmail.com>
3535
* @author Christophe Coevoet <stof@notk.org>
3636
*/
37-
class RegistrationController extends Controller
37+
class RegistrationController extends AbstractController
3838
{
3939
private $eventDispatcher;
4040
private $formFactory;

Controller/ResettingController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
use FOS\UserBundle\Model\UserInterface;
2222
use FOS\UserBundle\Model\UserManagerInterface;
2323
use FOS\UserBundle\Util\TokenGeneratorInterface;
24-
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
24+
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
2525
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
2626
use Symfony\Component\HttpFoundation\RedirectResponse;
2727
use Symfony\Component\HttpFoundation\Request;
@@ -33,7 +33,7 @@
3333
* @author Thibault Duplessis <thibault.duplessis@gmail.com>
3434
* @author Christophe Coevoet <stof@notk.org>
3535
*/
36-
class ResettingController extends Controller
36+
class ResettingController extends AbstractController
3737
{
3838
private $eventDispatcher;
3939
private $formFactory;

0 commit comments

Comments
 (0)