diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/http/pid.php | 2 |
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 |