Этот вопрос относится к
Как отключить перенаправление после login_check в Symfony 2
Я реализовал решение, приведенное по этой ссылке, но получаю ошибку Iобычно понимаю, но по этому поводу нет.Мой класс полностью реализует интерфейс (я думаю).
Неустранимая ошибка: объявление Foo \ AppBundle \ Handler \ AuthenticationHandler :: onAuthenticationSuccess () должно быть совместимо с таковым в Symfony \ Component \ Security \ Http \ Authentication\ AuthenticationSuccessHandlerInterface :: onAuthenticationSuccess () в /Users/Me/Sites/github/Foo/Symfony/src/Foo/AppBundle/Handler/AuthenticationHandler.php в строке 6
class AuthenticationHandler implements
\Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface,
\Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface
{
function onAuthenticationSuccess(Request $request, TokenInterface $token) {
return new Response();
}
function onAuthenticationFailure(Request $request, AuthenticationException $exception) {
return new Response();
}
}
Советы приветствуются!