src/Controller/MainController.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Component\HttpFoundation\Response;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. class MainController
  6. {
  7.     /**
  8.      * @Route("/", name="landing")
  9.      */
  10.     public function landing()
  11.     {
  12.                return new Response(
  13.             '<html><body>Coming soon</body></html>'
  14.         );
  15.     }
  16. }