diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-05 18:42:42 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-16 19:29:40 +0200 |
commit | d64aa85b0464933bd2dc25a56c0569c6dad6af19 (patch) | |
tree | 09e27885b4e046185bdde3d5fcc600bdeb63b547 /core/Controller/LoginController.php | |
parent | 73b7096850a8cd4530c327f32acaacd6c9bcd279 (diff) | |
download | nextcloud-server-d64aa85b0464933bd2dc25a56c0569c6dad6af19.tar.gz nextcloud-server-d64aa85b0464933bd2dc25a56c0569c6dad6af19.zip |
Applies agreed-upon indentation convention to the changed controllers.
Based on https://github.com/nextcloud/server/pull/38636#discussion_r1218167753
Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
Diffstat (limited to 'core/Controller/LoginController.php')
-rw-r--r-- | core/Controller/LoginController.php | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/core/Controller/LoginController.php b/core/Controller/LoginController.php index c684b82d8dc..1bee366b00f 100644 --- a/core/Controller/LoginController.php +++ b/core/Controller/LoginController.php @@ -62,19 +62,21 @@ class LoginController extends Controller { public const LOGIN_MSG_INVALIDPASSWORD = 'invalidpassword'; public const LOGIN_MSG_USERDISABLED = 'userdisabled'; - public function __construct(?string $appName, - IRequest $request, - private IUserManager $userManager, - private IConfig $config, - private ISession $session, - private Session $userSession, - private IURLGenerator $urlGenerator, - private Defaults $defaults, - private Throttler $throttler, - private IInitialStateService $initialStateService, - private WebAuthnManager $webAuthnManager, - private IManager $manager, - private IL10N $l10n) { + public function __construct( + ?string $appName, + IRequest $request, + private IUserManager $userManager, + private IConfig $config, + private ISession $session, + private Session $userSession, + private IURLGenerator $urlGenerator, + private Defaults $defaults, + private Throttler $throttler, + private IInitialStateService $initialStateService, + private WebAuthnManager $webAuthnManager, + private IManager $manager, + private IL10N $l10n, + ) { parent::__construct($appName, $request); } |