Anderson FACHINA

Results 7 comments of Anderson FACHINA

I got the same issue with `dd()` from a controller ![Image](https://github.com/user-attachments/assets/d0854f4e-c133-4532-afcf-662c29472cff) ![Image](https://github.com/user-attachments/assets/d2119986-2cea-42ac-aee9-87637ac06cce)

@AlliBalliBaba I have noticed this issue arises only when I use the `dd()` function. It appears that the error page is displayed in the console when I review the Docker...

@AlliBalliBaba I'm using frankenphp 1.6.2 From dockerfile i got this: FROM dunglas/frankenphp:1-php8.3 AS frankenphp_upstream Should i use 1.7.0 instead of 1

I have just pulled the latest version as I noticed it was updated recently, but the issues still persist.

I just call the `dd()` function, no content lenght header was set. For more info i'm using the [https://github.com/dunglas/symfony-docker](https://github.com/dunglas/symfony-docker) docker configuration

@withinboredom ```php #[Route(name: 'index', methods: ['GET'])] public function index( Request $request, ArticleRepository $articleRepository, PaginatorService $paginator, ExportHandler $exportHandler ): Response { $searchForm = $this->createForm(SearchArticleType::class); $searchForm->handleRequest($request); if ($exportHandler->intendToExportFromRequest()) { $data = $articleRepository->findBySearchQuery($searchForm);...