summaryrefslogtreecommitdiff
path: root/tests/http/data.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/http/data.php')
-rw-r--r--tests/http/data.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/http/data.php b/tests/http/data.php
deleted file mode 100644
index 6570936a..00000000
--- a/tests/http/data.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-use Psr\Http\Message\ResponseInterface;
-use Psr\Http\Message\ServerRequestInterface;
-
-function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface
-{
- $data = $req->getParsedBody();
-
- ksort($data);
- ksort($data['arr']);
- ksort($data['arr']['x']['y']);
-
- $resp->getBody()->write(json_encode($data));
-
- return $resp;
-}