[Security] Change the phrasing of the deauthenticated event

This commit is contained in:
Amrouche Hamza 2019-04-29 08:41:58 +02:00
parent 584c21b137
commit fa92272dc1
No known key found for this signature in database
GPG Key ID: E45A3DA456145BC1
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ CHANGELOG
* Dispatch `SwitchUserEvent` on `security.switch_user`
* Deprecated `Argon2iPasswordEncoder`, use `SodiumPasswordEncoder` instead
* Deprecated `BCryptPasswordEncoder`, use `NativePasswordEncoder` instead
* Added `DeauthenticatedEvent` dispatched in case the user has changed when trying to refresh it
* Added `DeauthenticatedEvent` dispatched in case the user has changed when trying to refresh the token
4.2.0
-----

View File

@ -15,7 +15,7 @@ use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Contracts\EventDispatcher\Event;
/**
* Deauthentication happens in case the user has changed when trying to refresh it.
* Deauthentication happens in case the user has changed when trying to refresh the token.
*
* @author Hamza Amrouche <hamza.simperfit@gmail.com>
*/