src/Controller/Support/ElectronicSupportController.php line 14

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