src/Controller/AppController.php line 16

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