RecursiveDispatcher
in package
implements
RequestHandlerInterface
A simple middleware dispatcher based on Slim
Tags
Table of Contents
Interfaces
- RequestHandlerInterface
Properties
- $kernel : RequestHandlerInterface
Methods
- __construct() : mixed
- RecursiveDispatcher constructor.
- add() : static
- Add a new middleware to the stack
- addStack() : static
- handle() : ResponseInterface
Properties
$kernel
protected
RequestHandlerInterface
$kernel
Methods
__construct()
RecursiveDispatcher constructor.
public
__construct(RequestHandlerInterface $kernel) : mixed
Parameters
- $kernel : RequestHandlerInterface
add()
Add a new middleware to the stack
public
add(MiddlewareInterface $middleware) : static
Middleware are organized as a stack. That means middleware that have been added before will be executed after the newly added one (last in, first out).
Parameters
- $middleware : MiddlewareInterface
Return values
staticaddStack()
public
addStack(array<string|int, MiddlewareInterface> $middlewareStack) : static
Parameters
- $middlewareStack : array<string|int, MiddlewareInterface>
Tags
Return values
statichandle()
public
handle(ServerRequestInterface $request) : ResponseInterface
Parameters
- $request : ServerRequestInterface