src/Controller/AuditController.php line 15
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class AuditController extends AbstractController{#[Route( path: ['fr' => '/{_locale<%app.supported_locales%>}/audit/','en' => '/{_locale<%app.supported_locales%>}/audit/'], name: 'app_audit', options: ['sitemap' => true])]public function index(): Response{return $this->render('audit/index.html.twig', ['active_menu' => 'audit']);}}