/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
psr
/
http-server-handler
/
src
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/psr/http-server-handler/src
mkdir
upload
Name
Size
Mode
Actions
RequestHandlerInterface.php
535
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/psr/http-server-handler/src/RequestHandlerInterface.php
(535B)
<?php namespace Psr\Http\Server; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; /** * Handles a server request and produces a response. * * An HTTP request handler process an HTTP request in order to produce an * HTTP response. */ interface RequestHandlerInterface { /** * Handles a request and produces a response. * * May call other collaborating code to generate the response. */ public function handle(ServerRequestInterface $request): ResponseInterface; }
Save