Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
http-server-handler/src/RequestHandlerInterface.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22 lines (19 sloc)
535 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; | |
} |