src/Controller/AppController.php line 29
<?phpnamespace App\Controller;use Doctrine\Persistence\ManagerRegistry;use Dompdf\Dompdf;use Dompdf\Options;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Finder\Finder;use Symfony\Component\HttpFoundation\BinaryFileResponse;use Symfony\Component\HttpFoundation\Request;use Symfony\Component\HttpFoundation\StreamedResponse;use Symfony\Component\Mailer\MailerInterface;use Symfony\Component\Mime\Email;use Symfony\Component\Routing\Annotation\Route;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Generator\UrlGeneratorInterface;use Symfony\Contracts\HttpClient\HttpClientInterface;use Symfony\Contracts\Translation\TranslatorInterface;/*** Class DefaultController* @package AppBundle\Controller*/class AppController extends AbstractController{#[Route("/", name:"home", methods: ["GET"])]public function home():Response{return $this->render('home.html.twig');}}