<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class ConfidentialiteController extends AbstractController{    /**     * @Route("/confidentialite", name="confidentialite")     */    public function index(): Response    {        return $this->render('confidentialite/index.html.twig', [            'controller_name' => 'ConfidentialiteController',        ]);    }}