diff options
author | Dariusz Ruminski <dariusz.ruminski@gmail.com> | 2015-03-27 23:06:33 +0100 |
---|---|---|
committer | Dariusz Ruminski <dariusz.ruminski@gmail.com> | 2015-03-27 23:12:40 +0100 |
commit | fb7e9db41c92a967194fb26ed4fef4ce95c7cdac (patch) | |
tree | 208c651deb4c28cd1a70d50594cd421178813487 /Core/Authentication | |
parent | 6c8c751f7f5b09dbb608d4f43518dcb3fb214057 (diff) | |
download | symfony-security-fb7e9db41c92a967194fb26ed4fef4ce95c7cdac.zip symfony-security-fb7e9db41c92a967194fb26ed4fef4ce95c7cdac.tar.gz symfony-security-fb7e9db41c92a967194fb26ed4fef4ce95c7cdac.tar.bz2 |
CS: Unary operators should be placed adjacent to their operands
Diffstat (limited to 'Core/Authentication')
-rw-r--r-- | Core/Authentication/Token/AbstractToken.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Authentication/Token/AbstractToken.php b/Core/Authentication/Token/AbstractToken.php index c239f8c..a71bd06 100644 --- a/Core/Authentication/Token/AbstractToken.php +++ b/Core/Authentication/Token/AbstractToken.php @@ -252,7 +252,7 @@ abstract class AbstractToken implements TokenInterface } if ($this->user instanceof EquatableInterface) { - return ! (bool) $this->user->isEqualTo($user); + return !(bool) $this->user->isEqualTo($user); } if ($this->user->getPassword() !== $user->getPassword()) { |