我想访问控制器或服务中的编码密码。
我可以使用Twig访问它:
{{ app.user.password }} /* prints the encoded password. */
但是当我从控制器尝试它时,我会得到一个空结果:
$user = $this->get('security.context')->getToken()->getUser();
$user->getPassword(); /* returns null */
为什么我可以使用Twig访问它,但不能从控制器访问它?