blob: 617b5a3f9b97b4b6d8a2fdfe93693fe28227619e (
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();
}
|