You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Authentication/AuthenticatorManager.php
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -146,14 +146,14 @@ private function executeAuthenticators(array $authenticators, Request $request):
146
146
// eagerly (before token storage is initialized), whereas authenticate() is called
147
147
// lazily (after initialization).
148
148
if (false === $authenticator->supports($request)) {
149
-
$this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => \get_class($authenticatorinstanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)]);
149
+
$this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticatorinstanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
$this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => \get_class($authenticatorinstanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)]);
156
+
$this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticatorinstanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
157
157
158
158
return$response;
159
159
}
@@ -201,7 +201,7 @@ private function executeAuthenticator(AuthenticatorInterface $authenticator, Req
0 commit comments