Skip to content

Commit

Permalink
minor #35657 [Security] Fix exception name in doc comments (chalasr)
Browse files Browse the repository at this point in the history
This PR was squashed before being merged into the 3.4 branch (closes #35657).

Discussion
----------

[Security] Fix exception name in doc comments

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

Commits
-------

f10098e [Security] Fix exception name in doc comments
  • Loading branch information
fabpot committed Feb 10, 2020
2 parents 3ebe15e + f10098e commit 9e0a39e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -12,7 +12,7 @@
namespace Symfony\Component\Security\Core\Exception;

/**
* AuthenticationServiceException is thrown when an authenticated token becomes un-authenticated between requests.
* AuthenticationExpiredException is thrown when an authenticated token becomes un-authenticated between requests.
*
* In practice, this is due to the User changing between requests (e.g. password changes),
* causes the token to become un-authenticated.
Expand Down
Expand Up @@ -82,7 +82,7 @@ public function authenticate(TokenInterface $token)
return $token;
}

// this AccountStatusException causes the user to be logged out
// this AccountExpiredException causes the user to be logged out
throw new AuthenticationExpiredException();
}

Expand Down

0 comments on commit 9e0a39e

Please sign in to comment.