src/Http/Controller/Site/WhyCreateAccountController.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Http\Controller\Site;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. /**
  6.  * @Route("/why-create-account", name="site_why_create_account")
  7.  */
  8. class WhyCreateAccountController extends AbstractController
  9. {
  10.     public function __invoke()
  11.     {
  12.         return $this->render('site/why_create_account.html.twig');
  13.     }
  14. }