diff --git a/HttpServer/Http/Response.php b/HttpServer/Http/Response.php index 87a040fe..04458056 100644 --- a/HttpServer/Http/Response.php +++ b/HttpServer/Http/Response.php @@ -213,6 +213,7 @@ class Response extends HttpService if (empty($this->endData) || is_string($this->endData)) { return $this->endData; } + var_dump($this->endData); if (!($this->endData instanceof Response)) { $class = Response::FORMAT_MAPS[$this->format] ?? HtmlFormatter::class; return \di($class)->send($this->endData)->getData();