私の問題は、ユーザのログアウトをキャプチャすることです。私が持っているもののコードは次のとおりです。symfony2ログアウト
public function onAuthenticationFailure(Request $request, AuthenticationException $exception){
return new Response($this->translator->trans($exception->getMessage()));
}
public function logout(Request $request, Response $response, TokenInterface $token)
{
$empleado = $token->getUser();
$log = new Log();
$log->setFechalog(new \DateTime('now'));
$log->setTipo("Out");
$log->setEntidad("");
$log->setEmpleado($empleado);
$this->em->persist($log);
$this->em->flush();
}
public function onLogoutSuccess(Request $request) {
return new RedirectResponse($this->router->generate('login'));
}
問題は、ログアウト機能を実行しているとき、私はTokenInterface
トークンユーザーにアクセスすることはできませんでしょうか?
soluctionの問題は、サービスのセキュリティコンテキストでありますありがとう。 – paradita
'$ token-> getUser()'はnullを返しますか?あるいは、 '$ token'がヌルですか? – Kosta