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
@@ -90,14 +90,14 @@ public function supports(Request $request): ?bool
90
90
$lazy = true;
91
91
foreach ($this->authenticatorsas$authenticator) {
92
92
if (null !== $this->logger) {
93
-
$this->logger->debug('Checking support on authenticator.', ['firewall_key' => $this->firewallName, 'authenticator' => \get_class($authenticator)]);
93
+
$this->logger->debug('Checking support on authenticator.', ['firewall_name' => $this->firewallName, 'authenticator' => \get_class($authenticator)]);
94
94
}
95
95
96
96
if (false !== $supports = $authenticator->supports($request)) {
97
97
$authenticators[] = $authenticator;
98
98
$lazy = $lazy && null === $supports;
99
99
} elseif (null !== $this->logger) {
100
-
$this->logger->debug('Authenticator does not support the request.', ['firewall_key' => $this->firewallName, 'authenticator' => \get_class($authenticator)]);
100
+
$this->logger->debug('Authenticator does not support the request.', ['firewall_name' => $this->firewallName, 'authenticator' => \get_class($authenticator)]);
0 commit comments