<?php
/**
* Created by PhpStorm.
* User: Booleens
* Date: 02/08/2019
* Time: 08:40
*/
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class AproposController extends AbstractController
{
public function __construct()
{
}
/**
* @Route("/apropos",name="apropos.index")
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function index(){
return $this->render('inscription/apropos/apropos.html.twig');
}
}