Skip to content

Commit 45314d5

Browse files
authored
Merge pull request #2689 from HeahDude/fix-controllers
Fixed BC break introduced in #2639
2 parents 17c299b + 5c838cd commit 45314d5

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

Controller/ChangePasswordController.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\AbstractController;
21+
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
2222
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
2323
use Symfony\Component\HttpFoundation\RedirectResponse;
2424
use Symfony\Component\HttpFoundation\Request;
@@ -31,7 +31,7 @@
3131
* @author Thibault Duplessis <thibault.duplessis@gmail.com>
3232
* @author Christophe Coevoet <stof@notk.org>
3333
*/
34-
class ChangePasswordController extends AbstractController
34+
class ChangePasswordController extends Controller
3535
{
3636
/**
3737
* @var EventDispatcherInterface

Controller/ConfirmEmailUpdateController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use FOS\UserBundle\Model\UserManagerInterface;
1919
use FOS\UserBundle\Services\EmailConfirmation\EmailUpdateConfirmation;
2020
use FOS\UserBundle\Util\CanonicalFieldsUpdater;
21-
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
21+
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
2222
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
2323
use Symfony\Component\HttpFoundation\Request;
2424
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
@@ -29,7 +29,7 @@
2929
*
3030
* @author Dominik Businger <git@azine.me>
3131
*/
32-
class ConfirmEmailUpdateController extends AbstractController
32+
class ConfirmEmailUpdateController extends Controller
3333
{
3434
/**
3535
* @var EventDispatcherInterface

Controller/GroupController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
use FOS\UserBundle\FOSUserEvents;
2020
use FOS\UserBundle\Model\GroupInterface;
2121
use FOS\UserBundle\Model\GroupManagerInterface;
22-
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
22+
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
2323
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
2424
use Symfony\Component\HttpFoundation\RedirectResponse;
2525
use Symfony\Component\HttpFoundation\Request;
@@ -32,7 +32,7 @@
3232
* @author Thibault Duplessis <thibault.duplessis@gmail.com>
3333
* @author Christophe Coevoet <stof@notk.org>
3434
*/
35-
class GroupController extends AbstractController
35+
class GroupController extends Controller
3636
{
3737
/**
3838
* @var EventDispatcherInterface

Controller/ProfileController.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\AbstractController;
21+
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
2222
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
2323
use Symfony\Component\HttpFoundation\RedirectResponse;
2424
use Symfony\Component\HttpFoundation\Request;
@@ -30,7 +30,7 @@
3030
*
3131
* @author Christophe Coevoet <stof@notk.org>
3232
*/
33-
class ProfileController extends AbstractController
33+
class ProfileController extends Controller
3434
{
3535
/**
3636
* @var EventDispatcherInterface

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\AbstractController;
21+
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
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 AbstractController
37+
class RegistrationController extends Controller
3838
{
3939
/**
4040
* @var EventDispatcherInterface

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\AbstractController;
24+
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
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 AbstractController
36+
class ResettingController extends Controller
3737
{
3838
/**
3939
* @var EventDispatcherInterface

Controller/SecurityController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace FOS\UserBundle\Controller;
1313

14-
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
14+
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
1515
use Symfony\Component\HttpFoundation\Request;
1616
use Symfony\Component\HttpFoundation\Response;
1717
use Symfony\Component\HttpFoundation\Session\Session;
@@ -25,7 +25,7 @@
2525
* @author Thibault Duplessis <thibault.duplessis@gmail.com>
2626
* @author Christophe Coevoet <stof@notk.org>
2727
*/
28-
class SecurityController extends AbstractController
28+
class SecurityController extends Controller
2929
{
3030
/**
3131
* @var CsrfTokenManagerInterface

0 commit comments

Comments
 (0)