src/UserInterface/FrontOffice/Controller/IndexController.php line 14
<?phpdeclare(strict_types=1);namespace App\UserInterface\FrontOffice\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class IndexController extends AbstractController{#[Route('/', name: 'home')]public function index(): Response{return $this->render('@frontOffice/index/index.html.twig', []);}}