On this page
Class ClosureDecoratorMiddleware
Decorate closures as PSR-15 middleware.
Decorates closures with the following signature:
function (
ServerRequestInterface $request,
RequestHandlerInterface $handler
): ResponseInterface
such that it will operate as PSR-15 middleware.
Property Summary
-
$callable protected
Closure
A Closure.
Method Summary
__construct() public
Constructor
getCallable() public
process() public
Run the callable to process an incoming server request.
Method Detail
__construct() public
__construct(Closure $callable)
Constructor
Parameters
Closure
$callable-
A closure.
getCallable() public
getCallable(): callable
Returns
callable
process() public
process(ServerRequestInterface $request, RequestHandlerInterface $handler): Psr\Http\Message\ResponseInterface
Run the callable to process an incoming server request.
Processes an incoming server request in order to produce a response. If unable to produce the response itself, it may delegate to the provided request handler to do so.
Parameters
ServerRequestInterface
$request-
Request instance.
RequestHandlerInterface
$handler-
Request handler instance.
Returns
Psr\Http\Message\ResponseInterface
Property Detail
$callable protected
A Closure.
Type
Closure
© 2005–present The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/4.4/class-Cake.Http.Middleware.ClosureDecoratorMiddleware.html