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