aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Authentication
diff options
context:
space:
mode:
authorKate <26026535+provokateurin@users.noreply.github.com>2024-09-19 15:49:04 +0200
committerGitHub <noreply@github.com>2024-09-19 15:49:04 +0200
commit74c38b87e513e8e8f96197c709d97881631b42b3 (patch)
treea6b6ea0825343570bacb1f8b9a6b0a7ee486fa91 /lib/private/Authentication
parent8c60ffa0f21414e6e671c567d664a9b9e5253e26 (diff)
parent6285f550b6cd94e13e73a66894744e2ee7be32b5 (diff)
downloadnextcloud-server-74c38b87e513e8e8f96197c709d97881631b42b3.tar.gz
nextcloud-server-74c38b87e513e8e8f96197c709d97881631b42b3.zip
Merge pull request #48181 from nextcloud/chore/deps/nextcloud-coding-standard
Diffstat (limited to 'lib/private/Authentication')
-rw-r--r--lib/private/Authentication/Login/Chain.php2
-rw-r--r--lib/private/Authentication/Login/WebAuthnChain.php2
-rw-r--r--lib/private/Authentication/WebAuthn/Manager.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/Authentication/Login/Chain.php b/lib/private/Authentication/Login/Chain.php
index abd24287a6c..3cba396afdd 100644
--- a/lib/private/Authentication/Login/Chain.php
+++ b/lib/private/Authentication/Login/Chain.php
@@ -56,7 +56,7 @@ class Chain {
UpdateLastPasswordConfirmCommand $updateLastPasswordConfirmCommand,
SetUserTimezoneCommand $setUserTimezoneCommand,
TwoFactorCommand $twoFactorCommand,
- FinishRememberedLoginCommand $finishRememberedLoginCommand
+ FinishRememberedLoginCommand $finishRememberedLoginCommand,
) {
$this->preLoginHookCommand = $preLoginHookCommand;
$this->userDisabledCheckCommand = $userDisabledCheckCommand;
diff --git a/lib/private/Authentication/Login/WebAuthnChain.php b/lib/private/Authentication/Login/WebAuthnChain.php
index c31e39de28c..ae523c43da6 100644
--- a/lib/private/Authentication/Login/WebAuthnChain.php
+++ b/lib/private/Authentication/Login/WebAuthnChain.php
@@ -48,7 +48,7 @@ class WebAuthnChain {
UpdateLastPasswordConfirmCommand $updateLastPasswordConfirmCommand,
SetUserTimezoneCommand $setUserTimezoneCommand,
TwoFactorCommand $twoFactorCommand,
- FinishRememberedLoginCommand $finishRememberedLoginCommand
+ FinishRememberedLoginCommand $finishRememberedLoginCommand,
) {
$this->userDisabledCheckCommand = $userDisabledCheckCommand;
$this->webAuthnLoginCommand = $webAuthnLoginCommand;
diff --git a/lib/private/Authentication/WebAuthn/Manager.php b/lib/private/Authentication/WebAuthn/Manager.php
index 7aa7a3c8f3a..e65002632d8 100644
--- a/lib/private/Authentication/WebAuthn/Manager.php
+++ b/lib/private/Authentication/WebAuthn/Manager.php
@@ -53,7 +53,7 @@ class Manager {
CredentialRepository $repository,
PublicKeyCredentialMapper $credentialMapper,
LoggerInterface $logger,
- IConfig $config
+ IConfig $config,
) {
$this->repository = $repository;
$this->credentialMapper = $credentialMapper;