summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2019-01-05 16:13:00 +0300
committerWolfy-J <[email protected]>2019-01-05 16:13:00 +0300
commit40d66629617f7a96b9005df356b94ab3b4dfb98f (patch)
tree9901e93d20d57affbdbc88963956c78586eb0b00 /tests
parentd890e973c45fbe53916304321f185ce940776bb7 (diff)
zend factory dependency elliminated
Diffstat (limited to 'tests')
-rw-r--r--tests/http/pid.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/http/pid.php b/tests/http/pid.php
index 1cc322bf..0c9a4e4d 100644
--- a/tests/http/pid.php
+++ b/tests/http/pid.php
@@ -5,7 +5,7 @@ use Psr\Http\Message\ServerRequestInterface;
function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface
{
- $resp->getBody()->write(getmypid());
+ $resp->getBody()->write((string)getmypid());
return $resp;
} \ No newline at end of file