Change MiddlewareInterface signature
This commit is contained in:
parent
1d30fcbbba
commit
8874827524
|
|
@ -7,5 +7,11 @@ use Psr\Http\Message\ServerRequestInterface;
|
||||||
|
|
||||||
interface MiddlewareInterface
|
interface MiddlewareInterface
|
||||||
{
|
{
|
||||||
public function dispatch(ServerRequestInterface $request, ResponseInterface &$response);
|
/**
|
||||||
|
* @param ServerRequestInterface $request
|
||||||
|
* @param ResponseInterface $response
|
||||||
|
* @param callable $next
|
||||||
|
* @return ResponseInterface
|
||||||
|
*/
|
||||||
|
public function dispatch(ServerRequestInterface $request, ResponseInterface $response, $next);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue