summaryrefslogtreecommitdiffstats
path: root/Core/Authentication
diff options
context:
space:
mode:
authorDariusz Ruminski <dariusz.ruminski@gmail.com>2015-03-27 23:06:33 +0100
committerDariusz Ruminski <dariusz.ruminski@gmail.com>2015-03-27 23:12:40 +0100
commitfb7e9db41c92a967194fb26ed4fef4ce95c7cdac (patch)
tree208c651deb4c28cd1a70d50594cd421178813487 /Core/Authentication
parent6c8c751f7f5b09dbb608d4f43518dcb3fb214057 (diff)
downloadsymfony-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.php2
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()) {