summaryrefslogtreecommitdiff
path: root/tests/http/echoDelay.php
blob: 2ee2b0495f5a8cca6e73e7a3c315fefe09576ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

use \Psr\Http\Message\ServerRequestInterface;
use \Psr\Http\Message\ResponseInterface;

function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface
{
    sleep(1);
    $resp->getBody()->write(strtoupper($req->getQueryParams()['hello']));
    return $resp->withStatus(201);
}