[SecurityBundle] Remove invalid unused service

This commit is contained in:
Robin Chalas 2021-05-19 01:02:18 +02:00
parent 2e047c9cfa
commit 1e6588a848
No known key found for this signature in database
GPG Key ID: 89672113756EE03B
2 changed files with 1 additions and 9 deletions

View File

@ -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'),
])
;
};

View File

@ -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 <wouter@wouterj.nl>
*/