chill-bundles/Controller/DefaultController.php
2014-11-07 11:46:05 +01:00

14 lines
305 B
PHP

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