<?php
namespace App\Http\Controller\Site;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/why-create-account", name="site_why_create_account")
*/
class WhyCreateAccountController extends AbstractController
{
public function __invoke()
{
return $this->render('site/why_create_account.html.twig');
}
}