diff options
Diffstat (limited to 'tests/http/data.php')
-rw-r--r-- | tests/http/data.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/http/data.php b/tests/http/data.php index c5e0bab0..6570936a 100644 --- a/tests/http/data.php +++ b/tests/http/data.php @@ -5,7 +5,6 @@ use Psr\Http\Message\ServerRequestInterface; function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface { - $data = $req->getParsedBody(); ksort($data); @@ -15,4 +14,4 @@ function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): Re $resp->getBody()->write(json_encode($data)); return $resp; -}
\ No newline at end of file +} |