Hey, is it possible to refactor Template() annotation to render method in Symfony?
Before
/**
* @Template()
* @Route("/index", name="_index")
*/
public function indexAction()
{
return [];
}
After
/**
* @Route("/index", name="_index")
*/
public function indexAction()
{
return $this->render('index.html.twig');
}
Hey, is it possible to refactor Template() annotation to render method in Symfony?
Before
After