src/Controller/SnippetController.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Component\HttpFoundation\JsonResponse;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  7. use Symfony\Component\Routing\Annotation\Route;
  8. class SnippetController extends DefaultController
  9. {
  10. public function footerAction(Request $request): Response
  11. {
  12. return $this->render('includes/footer.html.twig', [
  13. ]);
  14. }
  15. }