Documentation

RecursiveDispatcher
in package
implements RequestHandlerInterface

A simple middleware dispatcher based on Slim

Tags
see
https://github.com/slimphp/Slim/blob/de07f779d229ec06080259a816b0740de830438c/Slim/MiddlewareDispatcher.php

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

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
static

addStack()

public addStack(array<string|int, MiddlewareInterface$middlewareStack) : static
Parameters
$middlewareStack : array<string|int, MiddlewareInterface>
Tags
throws
MiddlewareException
Return values
static

handle()

public handle(ServerRequestInterface $request) : ResponseInterface
Parameters
$request : ServerRequestInterface
Tags
inheritDoc
Return values
ResponseInterface

        
On this page

Search results