src/Controller/AboutController.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. use Twig\Environment;
  7. class AboutController extends AbstractController
  8. {
  9.     /**
  10.      * @Route("/about", name="about_page")
  11.      */
  12.     public function about(Environment $twig): Response
  13.     {
  14.         return $this->render('pages/about.html.twig');
  15.     }
  16. }