bug #41269 [SecurityBundle] Remove invalid unused service (chalasr)

This PR was merged into the 5.2 branch.

Discussion
----------

[SecurityBundle] Remove invalid unused service

| Q             | A
| ------------- | ---
| Branch?       | 5.2
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

Leftover of a revisited experimental feature (the class defined on the service does not exist).

Commits
-------

1e6588a848 [SecurityBundle] Remove invalid unused service
This commit is contained in:
Fabien Potencier 2021-05-19 08:38:01 +02:00
commit 8ff65422b2
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>
*/