src/Controller/HomepageController.php line 24

Open in your IDE?
  1. <?php
  2. /*
  3.  * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
  4.  * Click nbfs://nbhost/SystemFileSystem/Templates/Scripting/PHPClass.php to edit this template
  5.  */
  6. namespace App\Controller;
  7. use Symfony\Component\Routing\Annotation\Route;
  8. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  9. /**
  10.  * Description of HomepageController
  11.  *
  12.  * @author programmer
  13.  */
  14. class HomepageController extends AbstractController 
  15. {
  16.     
  17.     /**
  18.      * @Route("/", name="homepage")
  19.      */
  20.     public function index()
  21.     {
  22.         return $this->redirectToRoute("kmj_user_login");
  23.     }
  24. }