chill-bundles/Controller/DefaultController.php
2014-11-11 16:56:20 +01:00

14 lines
274 B
PHP

<?php
namespace Chill\MainBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class DefaultController extends Controller
{
public function indexAction()
{
return $this->render('ChillMainBundle::layout.html.twig');
}
}