diff --git a/HttpServer/Http/HttpParams.php b/HttpServer/Http/HttpParams.php index 0221ef1d..8fb66e9e 100644 --- a/HttpServer/Http/HttpParams.php +++ b/HttpServer/Http/HttpParams.php @@ -208,9 +208,6 @@ class HttpParams */ #[Pure] public function load(): array { - if (is_string($this->body)){ - $this->body = Help::toArray($this->body); - } return array_merge($this->files ?? [], $this->body ?? [], $this->gets ?? [], $this->socket ?? []); }