diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-05 18:47:57 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-20 10:38:46 +0200 |
commit | 2800436948acbceb45362fc5cab7b2f5257caccd (patch) | |
tree | 5df8d4588a136428a8ceb4a6e949f707c946cab4 /core/Controller/WebAuthnController.php | |
parent | 9eedeb401211c7210228b2c87674066d862d0329 (diff) | |
download | nextcloud-server-2800436948acbceb45362fc5cab7b2f5257caccd.tar.gz nextcloud-server-2800436948acbceb45362fc5cab7b2f5257caccd.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/WebAuthnController.php')
-rw-r--r-- | core/Controller/WebAuthnController.php | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/core/Controller/WebAuthnController.php b/core/Controller/WebAuthnController.php index d4ee5637598..08a6b36d276 100644 --- a/core/Controller/WebAuthnController.php +++ b/core/Controller/WebAuthnController.php @@ -45,13 +45,15 @@ class WebAuthnController extends Controller { private const WEBAUTHN_LOGIN = 'webauthn_login'; private const WEBAUTHN_LOGIN_UID = 'webauthn_login_uid'; - public function __construct(string $appName, - IRequest $request, - private Manager $webAuthnManger, - private ISession $session, - private LoggerInterface $logger, - private WebAuthnChain $webAuthnChain, - private URLGenerator $urlGenerator) { + public function __construct( + string $appName, + IRequest $request, + private Manager $webAuthnManger, + private ISession $session, + private LoggerInterface $logger, + private WebAuthnChain $webAuthnChain, + private URLGenerator $urlGenerator, + ) { parent::__construct($appName, $request); } |