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
{{ message }}
This repository was archived by the owner on May 31, 2024. It is now read-only.
// abort the execution of the authenticator if it doesn't support the request
105
101
if ($guardAuthenticatorinstanceof AuthenticatorInterface) {
102
+
if (null !== $this->logger) {
103
+
$this->logger->debug('Checking support on guard authenticator.', array('firewall_key' => $this->providerKey, 'authenticator' => \get_class($guardAuthenticator)));
104
+
}
105
+
106
106
if (!$guardAuthenticator->supports($request)) {
107
+
if (null !== $this->logger) {
108
+
$this->logger->debug('Guard authenticator does not support the request.', array('firewall_key' => $this->providerKey, 'authenticator' => \get_class($guardAuthenticator)));
109
+
}
110
+
107
111
return;
108
112
}
109
113
// as there was a support for given request,
@@ -114,6 +118,10 @@ private function executeGuardAuthenticator($uniqueGuardKey, GuardAuthenticatorIn
0 commit comments