src/Controller/HomeController.php line 13

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