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