<?phpnamespace App\Http\Controller\Site;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;/** * @Route("/privacy", name="site_privacy") */class PrivacyController extends AbstractController{ public function __invoke() { return $this->render('site/privacy.html.twig'); }}