<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;/** * @Route("/") */class HomeController extends AbstractController{ /** * @Route("/", name="home") */ public function index() { // if ($this->getUser()) // return $this->redirectToRoute("feed"); // return $this->render('home/index.html.twig', [ // ]); return $this->redirectToRoute("feed"); }}