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
if (!$this->isRememberMeEnabled($event->getProviderKey(), $event->getAuthenticator())) {
40
+
$authenticator = $event->getAuthenticator();
41
+
if (!$authenticatorinstanceof RememberMeAuthenticatorInterface || !$authenticator->supportsRememberMe()) {
42
+
if (null !== $this->logger) {
43
+
$this->logger->debug('Remember me skipped: your authenticator does not support it.', ['authenticator' => \get_class($authenticator)]);
44
+
}
45
+
43
46
return;
44
47
}
45
48
46
49
if (null === $event->getResponse()) {
47
50
if (null !== $this->logger) {
48
-
$this->logger->debug('Remember me skipped: the authenticator did not set a success response.', ['authenticator' => \get_class($event->getAuthenticator())]);
51
+
$this->logger->debug('Remember me skipped: the authenticator did not set a success response.', ['authenticator' => \get_class($authenticator)]);
49
52
}
50
53
51
54
return;
@@ -56,31 +59,9 @@ public function onSuccessfulLogin(LoginSuccessEvent $event): void
0 commit comments