<?phpnamespace App\Controller;use Symfony\Component\Routing\Annotation\Route;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Request;class DefaultController extends AbstractController{ /** * @Route("/", name="default") */ public function indexAction(Request $request) { return $this->redirectToRoute('participations'); }}