chill-bundles/Controller/DefaultController.php
2016-03-18 10:28:26 +01:00

14 lines
303 B
PHP

<?php
namespace Chill\EventBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class DefaultController extends Controller
{
public function indexAction($name)
{
return $this->render('ChillEventBundle:Default:index.html.twig', array('name' => $name));
}
}