<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class PrivacyPolicyController extends AbstractController{ /** * @Route("/politique-de-confidentialite", name="privacy-policy", methods={"GET"}) */ public function showPrivacyPolicy() { return $this->render('privacy-policy/index.html.twig', ['menu' => 'privacy-policy']); }}