From 80905edc3793536c106ae5724277c90597d6a6e9 Mon Sep 17 00:00:00 2001 From: Yevgeny Tomenko Date: Fri, 9 Feb 2024 20:24:19 +0300 Subject: [PATCH 1/3] code style fixes --- src/Loader/AuthenticationServiceLoader.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Loader/AuthenticationServiceLoader.php b/src/Loader/AuthenticationServiceLoader.php index e2186ea9..f92388c1 100644 --- a/src/Loader/AuthenticationServiceLoader.php +++ b/src/Loader/AuthenticationServiceLoader.php @@ -16,6 +16,7 @@ use Cake\Core\Configure; use CakeDC\Auth\Authentication\AuthenticationService; use CakeDC\Auth\Authentication\TwoFactorProcessorLoader; +use CakeDC\Auth\Authentication\TwoFactorProcessorCollection; use Psr\Http\Message\ServerRequestInterface; /** @@ -80,6 +81,7 @@ protected function loadAuthenticators($service) * Load the CakeDC/Auth.TwoFactor based on config OneTimePasswordAuthenticator.login * * @param \CakeDC\Auth\Authentication\AuthenticationService $service Authentication service to load identifiers + * @param \CakeDC\Auth\Authentication\TwoFactorProcessorCollection $processors TwoFactorProcessors collection * @return void */ protected function loadTwoFactorAuthenticator($service, $processors) From e9acd218593ad818ba67c4cd9da391961ddeb17f Mon Sep 17 00:00:00 2001 From: Yevgeny Tomenko Date: Fri, 9 Feb 2024 20:28:30 +0300 Subject: [PATCH 2/3] code style fixes --- src/Loader/AuthenticationServiceLoader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Loader/AuthenticationServiceLoader.php b/src/Loader/AuthenticationServiceLoader.php index f92388c1..e6f7c75d 100644 --- a/src/Loader/AuthenticationServiceLoader.php +++ b/src/Loader/AuthenticationServiceLoader.php @@ -15,8 +15,8 @@ use Cake\Core\Configure; use CakeDC\Auth\Authentication\AuthenticationService; -use CakeDC\Auth\Authentication\TwoFactorProcessorLoader; use CakeDC\Auth\Authentication\TwoFactorProcessorCollection; +use CakeDC\Auth\Authentication\TwoFactorProcessorLoader; use Psr\Http\Message\ServerRequestInterface; /** From d10f9806a0f6b3f27347064c29749ea6413c3d9a Mon Sep 17 00:00:00 2001 From: Yevgeny Tomenko Date: Fri, 9 Feb 2024 20:33:02 +0300 Subject: [PATCH 3/3] code style fixes --- src/Loader/AuthenticationServiceLoader.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Loader/AuthenticationServiceLoader.php b/src/Loader/AuthenticationServiceLoader.php index e6f7c75d..6c0c454d 100644 --- a/src/Loader/AuthenticationServiceLoader.php +++ b/src/Loader/AuthenticationServiceLoader.php @@ -15,7 +15,6 @@ use Cake\Core\Configure; use CakeDC\Auth\Authentication\AuthenticationService; -use CakeDC\Auth\Authentication\TwoFactorProcessorCollection; use CakeDC\Auth\Authentication\TwoFactorProcessorLoader; use Psr\Http\Message\ServerRequestInterface;