summaryrefslogtreecommitdiff
path: root/tests/http/pid.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/http/pid.php')
-rw-r--r--tests/http/pid.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/http/pid.php b/tests/http/pid.php
deleted file mode 100644
index f22d8e23..00000000
--- a/tests/http/pid.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-
-use Psr\Http\Message\ResponseInterface;
-use Psr\Http\Message\ServerRequestInterface;
-
-function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface
-{
- $resp->getBody()->write((string)getmypid());
-
- return $resp;
-}