remove empty default controller

This commit is contained in:
2016-03-24 14:30:08 +01:00
parent 75266361b2
commit 3ac192d34c
3 changed files with 0 additions and 31 deletions

View File

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