src/Controller/Front/ExpertiseController.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Front;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class ExpertiseController extends AbstractController
  7. {
  8.     public function skills(): Response
  9.     {
  10.         return $this->render('front/expertise/skills.html.twig');
  11.     }
  12.     public function commitments(): Response
  13.     {
  14.         return $this->render('front/expertise/commitments.html.twig');
  15.     }
  16. }