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

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

function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface
{
    $resp->getBody()->write($req->getServerParams()['REMOTE_ADDR']);

    return $resp;
}