Bundle generation

This commit is contained in:
Marc Ducobu
2014-11-07 11:46:05 +01:00
commit 93abd192a8
10 changed files with 769 additions and 0 deletions

View File

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