mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
21 lines
390 B
PHP
21 lines
390 B
PHP
<?php
|
|
|
|
namespace Chill\PersonBundle\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
|
|
class AdminController extends Controller
|
|
{
|
|
/**
|
|
*
|
|
*/
|
|
public function indexAction($_locale)
|
|
{
|
|
return $this->render('ChillPersonBundle:Admin:index.html.twig', array(
|
|
// ...
|
|
));
|
|
}
|
|
|
|
}
|