Skip to content

Commit

Permalink
bug #1004 Fix FQCN of 'security.authentication.success' event (AlexBe…
Browse files Browse the repository at this point in the history
…vilacqua)

This PR was merged into the 1.0-dev branch.

Discussion
----------

Fix FQCN of 'security.authentication.success' event

can be verified here:

https://github.com/symfony/security-core/blob/5.4/AuthenticationEvents.php
https://github.com/symfony/security-core/blob/6.0/AuthenticationEvents.php

Commits
-------

ebfb0eb Fix FQCN of security.authentication.success event
  • Loading branch information
weaverryan committed Nov 16, 2021
2 parents 6493dca + ebfb0eb commit d61fb46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EventRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
use Symfony\Component\HttpKernel\Event\ResponseEvent;
use Symfony\Component\HttpKernel\Event\TerminateEvent;
use Symfony\Component\HttpKernel\Event\ViewEvent;
use Symfony\Component\Security\Core\Event\AuthenticationEvent;
use Symfony\Component\Security\Core\Event\AuthenticationFailureEvent;
use Symfony\Component\Security\Core\Event\AuthenticationSuccessEvent;
use Symfony\Component\Security\Http\Event\InteractiveLoginEvent;
use Symfony\Component\Security\Http\Event\SwitchUserEvent;
use Symfony\Contracts\EventDispatcher\Event;
Expand Down Expand Up @@ -65,7 +65,7 @@ class EventRegistry
'kernel.response' => FilterResponseEvent::class,
'kernel.terminate' => PostResponseEvent::class,
'kernel.finish_request' => FinishRequestEvent::class,
'security.authentication.success' => AuthenticationEvent::class,
'security.authentication.success' => AuthenticationSuccessEvent::class,
'security.authentication.failure' => AuthenticationFailureEvent::class,
'security.interactive_login' => InteractiveLoginEvent::class,
'security.switch_user' => SwitchUserEvent::class,
Expand Down

0 comments on commit d61fb46

Please sign in to comment.