<?php/** * @author <akartis-dev> */namespace App\Controller\App;use App\Controller\AppAbstractController;use Symfony\Component\Routing\Annotation\Route;class AppController extends AppAbstractController{ #[Route("/", name: "index")] public function index() { return $this->redirectToRoute('app_index', ['_locale' => 'fr']); }}