Skip to content

Commit 0daae07

Browse files
committed
cs fix
1 parent cf2acf3 commit 0daae07

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/bundle/Controller/PasswordChangeControllerInterface.php renamed to src/bundle/Controller/PasswordChangeController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
use Exception;
1212
use Ibexa\Contracts\Core\Repository\UserService;
13-
use Ibexa\Contracts\User\Controller\RestrictedControllerInterface;
1413
use Ibexa\Contracts\User\Controller\AuthenticatedRememberedCheckTrait;
14+
use Ibexa\Contracts\User\Controller\RestrictedControllerInterface;
1515
use Ibexa\Core\MVC\Symfony\SiteAccess;
1616
use Ibexa\User\ExceptionHandler\ActionResultHandler;
1717
use Ibexa\User\Form\Factory\FormFactory;
@@ -22,7 +22,7 @@
2222
use Symfony\Component\HttpFoundation\Request;
2323
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
2424

25-
class PasswordChangeControllerInterface extends Controller implements RestrictedControllerInterface
25+
class PasswordChangeController extends Controller implements RestrictedControllerInterface
2626
{
2727
use AuthenticatedRememberedCheckTrait;
2828

src/bundle/Controller/UserInvitationControllerInterface.php renamed to src/bundle/Controller/UserInvitationController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
namespace Ibexa\Bundle\User\Controller;
1010

11-
use Ibexa\Contracts\User\Controller\RestrictedControllerInterface;
1211
use Ibexa\Contracts\User\Controller\AuthenticatedRememberedCheckTrait;
12+
use Ibexa\Contracts\User\Controller\RestrictedControllerInterface;
1313
use Ibexa\Contracts\User\Invitation\Exception\InvitationAlreadyExistsException;
1414
use Ibexa\Contracts\User\Invitation\Exception\UserAlreadyExistsException;
1515
use Ibexa\Contracts\User\Invitation\InvitationCreateStruct;
@@ -22,7 +22,7 @@
2222
use Symfony\Component\Form\FormFactoryInterface;
2323
use Symfony\Component\HttpFoundation\Request;
2424

25-
final class UserInvitationControllerInterface extends Controller implements RestrictedControllerInterface
25+
final class UserInvitationController extends Controller implements RestrictedControllerInterface
2626
{
2727
use AuthenticatedRememberedCheckTrait;
2828

src/bundle/Controller/UserSettingsControllerInterface.php renamed to src/bundle/Controller/UserSettingsController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
namespace Ibexa\Bundle\User\Controller;
1010

1111
use Ibexa\Contracts\Core\Repository\PermissionResolver;
12-
use Ibexa\Contracts\User\Controller\RestrictedControllerInterface;
1312
use Ibexa\Contracts\User\Controller\AuthenticatedRememberedCheckTrait;
13+
use Ibexa\Contracts\User\Controller\RestrictedControllerInterface;
1414
use Ibexa\User\ExceptionHandler\ActionResultHandler;
1515
use Ibexa\User\Form\Data\UserSettingUpdateData;
1616
use Ibexa\User\Form\Factory\FormFactory;
@@ -26,7 +26,7 @@
2626
use Symfony\Component\HttpFoundation\Request;
2727
use Symfony\Component\HttpFoundation\Response;
2828

29-
class UserSettingsControllerInterface extends Controller implements RestrictedControllerInterface
29+
class UserSettingsController extends Controller implements RestrictedControllerInterface
3030
{
3131
use AuthenticatedRememberedCheckTrait;
3232

0 commit comments

Comments
 (0)