diff options
author | Wolfy-J <[email protected]> | 2019-01-05 16:13:00 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-01-05 16:13:00 +0300 |
commit | 40d66629617f7a96b9005df356b94ab3b4dfb98f (patch) | |
tree | 9901e93d20d57affbdbc88963956c78586eb0b00 /tests | |
parent | d890e973c45fbe53916304321f185ce940776bb7 (diff) |
zend factory dependency elliminated
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 |