summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormarliotto <[email protected]>2020-01-27 16:04:26 +0300
committermarliotto <[email protected]>2020-01-27 16:04:26 +0300
commite00d36c57c1227e614b0572ab0c0df98032f4298 (patch)
tree46d61d1db03692f3c75f931d290471f333f8fa2c /tests
parent648aac1b800fe506fe41f9143c2a4a2d95be408d (diff)
fix REQUEST_URI for requests through FastCGI
Diffstat (limited to 'tests')
-rw-r--r--tests/http/request-uri.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/http/request-uri.php b/tests/http/request-uri.php
new file mode 100644
index 00000000..d4c87551
--- /dev/null
+++ b/tests/http/request-uri.php
@@ -0,0 +1,10 @@
+<?php
+
+use Psr\Http\Message\ResponseInterface;
+use Psr\Http\Message\ServerRequestInterface;
+
+function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface
+{
+ $resp->getBody()->write($_SERVER['REQUEST_URI']);
+ return $resp;
+}