src/Controller/IndexController.php line 14

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 IndexController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/", name="index")
  10.      */
  11.     public function index(): RedirectResponse
  12.     {
  13.         return $this->redirectToRoute('sonata_admin_dashboard');
  14.     }
  15. }