<?php
namespace App\Controller;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class IndexController extends AbstractController
{
/**
* @Route("/", name="index")
*/
public function index()
{
return $this->redirectToRoute('timeline', ['slug' => 'coupe-de-france-longvic-2019']);
}
}