src/Controller/Blog/OutilController.php line 20
<?phpnamespace App\Controller\Blog;use App\Entity\Pages\Contact;use App\Form\Pages\ContactType;use Doctrine\Persistence\ManagerRegistry;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Request;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;use Twig\Environment;class OutilController extends AbstractController{/*** @Route("/{_locale}/outil/{nom}", name="page_outil_generique", requirements={"_locale"="fr|en"})*/public function contact(String $nom, Environment $engine, Request $request, ManagerRegistry $doctrine): Response{return $this->render('blog/outil/'.$nom.'.html.twig', []);}}