summaryrefslogtreecommitdiff
path: root/php-src/tests/http/error.php
blob: 6df0d4b52651c2bfd9324987d85606a5193daf88 (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
{
    throw new Error("error");
}