diff --git a/http-message/ServerRequest.php b/http-message/ServerRequest.php index af420ad6..7fd37c5d 100644 --- a/http-message/ServerRequest.php +++ b/http-message/ServerRequest.php @@ -72,7 +72,7 @@ class ServerRequest extends Request implements ServerRequestInterface ->withServerTarget($request) ->withCookieParams($request->cookie) ->withUri(Uri::parseUri($request)) - ->withBody(new Stream('')) + ->withBody(new Stream($request->getContent())) ->withQueryParams($request->get ?? []) ->withUploadedFiles($request->files ?? []) ->withMethod($request->getMethod())