<?phpdeclare(strict_types = 1);namespace App\Action;use App\Domain\Repository\Interfaces\TextRepositoryInterface;use App\Responder\RedirectResponder;use App\Responder\TemplateResponder;use Symfony\Component\Routing\Annotation\Route;use Symfony\Contracts\HttpClient\HttpClientInterface;class HabiterAction extends AbstractAction{ /** * @Route("/habiter", name="habiter") */ public function __invoke() { return $this->templateResponder->__invoke('habiter.html.twig'); }}