<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
class DefaultController extends AbstractController
{
/**
* @Route("/")
*/
public function indexAction()
{
return $this->render('default/index.html.twig');
}
}