<?phpnamespaceAppBundle\Controller;useSensio\Bundle\FrameworkExtraBundle\Configuration\Route;useSymfony\Bundle\FrameworkBundle\Controller\Controller;useSymfony\Component\HttpFoundation\Request;classDefaultControllerextendsController{/** * @Route("/", name="homepage") */publicfunctionindexAction(Request$request){// replace this example code with whatever you needreturn$this->render('default/index.html.twig',['base_dir'=>realpath($this->getParameter('kernel.project_dir')).DIRECTORY_SEPARATOR,]);}}