<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class PrivacyController extends AbstractController
{
/**
* @Route("/privacy", name="privacy", methods={"GET"})
*/
public function index(): Response
{
return $this->render('privacy/index.html.twig');
}
}