mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
14 lines
271 B
PHP
14 lines
271 B
PHP
<?php
|
|
|
|
namespace CL\Chill\MainBundle\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
|
|
class DefaultController extends Controller
|
|
{
|
|
public function indexAction()
|
|
{
|
|
return $this->render('CLChillMainBundle::layout.html.twig');
|
|
}
|
|
}
|