src/Controller/ClientController.php line 14

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 ClientController extends AbstractController
  6. {
  7.     /**
  8.      * @Route("/", name="home", priority="-100")
  9.      * @Route("/{route}", requirements={"route": "^.+"}, priority="-100")
  10.      */
  11.     function home() {
  12.         return $this->render('spa.html.twig');
  13.     }
  14. }