summaryrefslogtreecommitdiff
path: root/tests/http/error2.php
blob: 12a672acd1d4ed451587434eba4810f5da87a00c (plain)
1
2
3
4
5
6
7
8
9
<?php

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

function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface
{
    exit();
}