Я использую заявление из приложения Symfony2 в Symfony4:
$securityContext = $this->container->get('security.token_storage');
if($securityContext->isGranted('IS_AUTHENTICATED_REMEMBERED') ){
. . .
}
Я всегда получаю сообщение об ошибке:
Attempted to call an undefined method named "isGranted" of class "Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage
что мне не хватает?