initial commit

This commit is contained in:
2016-03-18 10:28:26 +01:00
commit c43e7daefe
9 changed files with 182 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?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));
}
}