diff --git a/src/Symfony/Bundle/SecurityBundle/Resources/config/security_authenticator_login_link.php b/src/Symfony/Bundle/SecurityBundle/Resources/config/security_authenticator_login_link.php index 2248b5e8ee..299a162f38 100644 --- a/src/Symfony/Bundle/SecurityBundle/Resources/config/security_authenticator_login_link.php +++ b/src/Symfony/Bundle/SecurityBundle/Resources/config/security_authenticator_login_link.php @@ -59,13 +59,5 @@ return static function (ContainerConfigurator $container) { service('request_stack'), ]) ->alias(LoginLinkHandlerInterface::class, 'security.authenticator.firewall_aware_login_link_handler') - - ->set('security.authenticator.entity_login_link_user_handler', EntityLoginLinkUserHandler::class) - ->abstract() - ->args([ - service('doctrine'), - abstract_arg('user entity class name'), - ]) - ; }; diff --git a/src/Symfony/Component/Security/Http/Authenticator/InteractiveAuthenticatorInterface.php b/src/Symfony/Component/Security/Http/Authenticator/InteractiveAuthenticatorInterface.php index 7f26d82606..71b6ade28d 100644 --- a/src/Symfony/Component/Security/Http/Authenticator/InteractiveAuthenticatorInterface.php +++ b/src/Symfony/Component/Security/Http/Authenticator/InteractiveAuthenticatorInterface.php @@ -17,7 +17,7 @@ namespace Symfony\Component\Security\Http\Authenticator; * * Interactive login requires explicit user action (e.g. a login * form or HTTP basic authentication). Implementing this interface - * will dispatcher the InteractiveLoginEvent upon successful login. + * will dispatch the InteractiveLoginEvent upon successful login. * * @author Wouter de Jong */