Skip to content

Commit

Permalink
fixed undefined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
James Michael DuPont authored and fabpot committed Sep 28, 2012
1 parent be00e32 commit b3d06dd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -79,7 +79,7 @@ public function handle(GetResponseEvent $event)
$token = $this->refreshUser($token);
} elseif (null !== $token) {
if (null !== $this->logger) {
$this->logger->warn(sprintf('Session includes a "%s" where a security token is expected', is_object($value) ? get_class($value) : gettype($value)));
$this->logger->warn(sprintf('Session includes a "%s" where a security token is expected', is_object($token) ? get_class($token) : gettype($token)));
}

$token = null;
Expand Down

0 comments on commit b3d06dd

Please sign in to comment.