<?php
namespace App\Controller;
use Symfony\Contracts\HttpClient\HttpClientInterface;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class ensavoirplusController extends AbstractController
{
private $client;
public function __construct(HttpClientInterface $client)
{
$this->client = $client;
}
/**
* @Route("/ensavoirplus/audition")
*/
public function renderEnSavoirPluspertePage()
{
return $this->render('/ensavoirplus/audition.html.twig', array(
));
}
/**
* @Route("/ensavoirplus/fonctionnement-de-l-oreille")
*/
public function renderEnSavoirPlusfctoreillePage()
{
return $this->render('/ensavoirplus/fctoreille.html.twig', array(
));
}
/**
* @Route("/ensavoirplus/les-nuisances-sonores")
*/
public function renderEnSavoirPlusnuisancessonoresPage()
{
return $this->render('/ensavoirplus/nuisancessonores.html.twig', array(
));
}
/**
* @Route("/ensavoirplus/acouphene")
*/
public function renderEnSavoirPlusAcouphenePage()
{
return $this->render('/ensavoirplus/acouphene.html.twig', array(
));
}
/**
* @Route("/ensavoirplus/contoursoreille")
*/
public function renderEnSavoirPlusContoursOreillePage()
{
return $this->render('/ensavoirplus/contoursoreille.html.twig', array(
));
}
/**
* @Route("/ensavoirplus/intraauriculaires")
*/
public function renderEnSavoirPlusIntraAuriculairesPage()
{
return $this->render('/ensavoirplus/intraauriculaires.html.twig', array(
));
}
/**
* @Route("/ensavoirplus/accessoiresauditifs")
*/
public function renderEnSavoirPlusAccessoiresAuditifsPage()
{
return $this->render('/ensavoirplus/accessoiresauditifs.html.twig', array(
));
}
/**
* @Route("/ensavoirplus/reforme")
*/
public function renderEnSavoirPlusReformePage()
{
return $this->render('/ensavoirplus/reforme.html.twig', array(
));
}
}