diff options
author | Wolfy-J <[email protected]> | 2018-09-23 14:00:08 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-09-23 14:00:08 +0300 |
commit | f7d64d8e8592951ed5a0f0b06db608bc73786ea2 (patch) | |
tree | 1bdef1618288221495f1f38bb528e71cca907e2e /tests/http/env.php | |
parent | 4815ebb760672c7fa541c941d7f47cd316656020 (diff) |
- new directory structure
- singular exception
- starting exception deprecation
Diffstat (limited to 'tests/http/env.php')
-rw-r--r-- | tests/http/env.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/http/env.php b/tests/http/env.php new file mode 100644 index 00000000..1e29926f --- /dev/null +++ b/tests/http/env.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['ENV_KEY']); + return $resp; +}
\ No newline at end of file |