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