git.fiddlerwoaroof.com
src/AppBundle/Controller/DefaultController.php
4511a7cd
 <?php
 
 namespace AppBundle\Controller;
 
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
 use Symfony\Component\HttpFoundation\Request;
 
 class DefaultController extends Controller
 {
     /**
      * @Route("/app/example", name="homepage")
      */
     public function indexAction()
     {
         return $this->render('default/index.html.twig');
     }
 }