chill-bundles/Controller/DefaultController.php

14 lines
306 B
PHP

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