8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 092b5dd commit d4b0a9cCopy full SHA for d4b0a9c
src/Symfony/Component/Security/Core/Encoder/EncoderFactory.php
@@ -44,7 +44,7 @@ public function getEncoder($user)
44
return $this->encoders[$class];
45
}
46
47
- throw new \RuntimeException(sprintf('No encoder has been configured for account "%s".', is_object($class) ? get_class($user) : $class));
+ throw new \RuntimeException(sprintf('No encoder has been configured for account "%s".', is_object($user) ? get_class($user) : $user));
48
49
50
/**
0 commit comments