chill-bundles/Controller/DefaultController.php
2015-06-30 22:07:55 +02:00

14 lines
309 B
PHP

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