@@ -588,6 +588,6 @@ |
||
588 | 588 | public function __toString() |
589 | 589 | { |
590 | 590 | $tmp = $this->isDisabled() ? ' [DISABLED]' : ''; |
591 | - return $this->getFullName(true) . $tmp; |
|
591 | + return $this->getFullName(true).$tmp; |
|
592 | 592 | } |
593 | 593 | } |
@@ -58,7 +58,7 @@ |
||
58 | 58 | $user = $token->getUser(); |
59 | 59 | |
60 | 60 | //An allowed user is not allowed to do anything... |
61 | - if($user instanceof User && $user->isDisabled()) { |
|
61 | + if ($user instanceof User && $user->isDisabled()) { |
|
62 | 62 | return false; |
63 | 63 | } |
64 | 64 |