src/Controller/HomeController.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\RedirectResponse;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class HomeController extends AbstractController
  7. {
  8.     /**
  9.      *
  10.      * @Route("/", name="home")
  11.      */
  12.     public function index(): RedirectResponse
  13.     {
  14.         return $this->redirectToRoute('banner_index');
  15.     }
  16. }