i'm trying to get FOSOAuthServerBundle to work on my project Running symfony 3.4.0
templating seems to be missing but i can't find anything about it on google. any idea what it could be? twig is working perfectly otherwise
i've cleared the cache downgraded from 3.4.1 to 3.4.0
AuthorizeController.php >
return $this->container->get('templating')->renderResponse(
'FOSOAuthServerBundle:Authorize:authorize.html.'.$this->container->getParameter('fos_oauth_server.template.engine'),
array(
'form' => $form->createView(),
'client' => $this->getClient(),
)
);
this is where its crashing.