diff options
author | Ryan Weaver <ryan@thatsquality.com> | 2015-09-22 19:45:03 -0400 |
---|---|---|
committer | Ryan Weaver <ryan@thatsquality.com> | 2015-09-22 19:45:03 -0400 |
commit | 98eafc5e5215835870d20037abdfac7b60d4a84d (patch) | |
tree | e1120941f089bdb80137961e25142e0cd23f8c59 | |
parent | 8d2203d5a4b8d9ef4f5e6d7610be0e6d565a7e8f (diff) | |
download | symfony-security-98eafc5e5215835870d20037abdfac7b60d4a84d.zip symfony-security-98eafc5e5215835870d20037abdfac7b60d4a84d.tar.gz symfony-security-98eafc5e5215835870d20037abdfac7b60d4a84d.tar.bz2 |
Removing unnecessary override
-rw-r--r-- | Guard/Token/PostAuthenticationGuardToken.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Guard/Token/PostAuthenticationGuardToken.php b/Guard/Token/PostAuthenticationGuardToken.php index 9657f8a..36c40ca 100644 --- a/Guard/Token/PostAuthenticationGuardToken.php +++ b/Guard/Token/PostAuthenticationGuardToken.php @@ -51,18 +51,6 @@ class PostAuthenticationGuardToken extends AbstractToken implements GuardTokenIn } /** - * {@inheritdoc} - */ - public function setAuthenticated($isAuthenticated) - { - if ($isAuthenticated) { - throw new \LogicException('Cannot set this token to trusted after instantiation.'); - } - - parent::setAuthenticated(false); - } - - /** * This is meant to be only an authenticated token, where credentials * have already been used and are thus cleared. * |