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