Dispatcher

The final, innermost layer of the request–response dispatch queue.

class Dispatcher implements Plugin

This class supports the following handlers on Aura\Router\Route objects:

  • Anonymous functions (closures and lambdas)
  • An array containing a class name and a function name; this object will be retrieved from the container.
  • A string; the object with this name in the container will be invoked.
Copyright
2015-2016 Appertly
License
Apache-2.0

Constructors / Destructors

Public
ReturnsSignature and Description
void
__construct(Matcher $matcher, Container $container)

Creates a new Dispatcher plugin

Instance Methods

Public
ReturnsSignature and Description
ResponseInterface
__invoke(ServerRequestInterface $request, ResponseInterface $response, (function(Request,Response):Response) $next)

Perform the actual routing and dispatch, returning the Response

?ServerRequestInterface

Gets the last request that was passed to the __invoke method.

Gets the plugin priority; larger means first.

Method Details

__construct

public function __construct(Matcher $matcher, Container $container)

Creates a new Dispatcher plugin

Parameters
NameTypeDescription
$matcherMatcher

The route matcher

$containerContainer

The dependency injection container

__invoke

public function __invoke(ServerRequestInterface $request, ResponseInterface $response, (function(Request,Response):Response) $next)

Perform the actual routing and dispatch, returning the Response

Parameters
NameTypeDescription
$requestServerRequestInterface

The server request

$responseResponseInterface

The response

$next(function(Request,Response):Response)

The next layer

Returns
TypeDescription
ResponseInterface

The new response

Throws
TypeConditions
Unroutable

if route matching fails

Uncallable

if a controller method can't be invoked

getLastDispatchedRequest

public function getLastDispatchedRequest()

Gets the last request that was passed to the __invoke method.

Since
0.6.3
Returns
TypeDescription
?ServerRequestInterface

The last request or null

getPriority

public function getPriority()

Gets the plugin priority; larger means first.

Returns
TypeDescription

The plugin priority