src/Controller/DoliController.php line 16
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class DoliController extends AbstractController{#[Route(path: ['fr' => '/{_locale<%app.supported_locales%>}/open-source/dolibarr/','en' => '/{_locale<%app.supported_locales%>}/open-source/dolibarr/'], name: 'app_doli', options: ['sitemap' => true])]public function index(): Response{return $this->render('openSource/dolibarr/index.html.twig', ['active_menu' => 'doli',]);/*return $this->render('soon/index.html.twig', ['active_menu' => 'soon',]);*/}}