DefaultController.php 383 Bytes
<?php

namespace UBV\UbicGeograficaBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;

class DefaultController extends Controller
{
    /**
     * @Route("/")
     */
    public function indexAction()
    {
        return $this->render('UBVUbicGeograficaBundle:Default:index.html.twig');
    }
}