<?phpnamespace App\Controller;use Symfony\Component\HttpFoundation\JsonResponse;use Symfony\Component\HttpFoundation\Request;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;use Symfony\Component\Routing\Annotation\Route;class SnippetController extends DefaultController{ public function footerAction(Request $request): Response { return $this->render('includes/footer.html.twig', [ ]); }}