diff options
author | Disquedur <contact@disquedur.tk> | 2014-10-22 20:27:13 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-10-26 08:30:58 +0100 |
commit | 2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b (patch) | |
tree | 6db7bb361d84015917efef4948aea85500d7b902 /Core/SecurityContextInterface.php | |
parent | cd022841a94f02dd95541fee4cc4a09c4b053d01 (diff) | |
download | symfony-security-2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b.zip symfony-security-2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b.tar.gz symfony-security-2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b.tar.bz2 |
Remove aligned '=>' and '='
Diffstat (limited to 'Core/SecurityContextInterface.php')
-rw-r--r-- | Core/SecurityContextInterface.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/SecurityContextInterface.php b/Core/SecurityContextInterface.php index ca816a8..50c30bb 100644 --- a/Core/SecurityContextInterface.php +++ b/Core/SecurityContextInterface.php @@ -20,9 +20,9 @@ use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; */ interface SecurityContextInterface { - const ACCESS_DENIED_ERROR = '_security.403_error'; + const ACCESS_DENIED_ERROR = '_security.403_error'; const AUTHENTICATION_ERROR = '_security.last_error'; - const LAST_USERNAME = '_security.last_username'; + const LAST_USERNAME = '_security.last_username'; /** * Returns the current security token. |