ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
|
Defines a contract for invoking a route callable. More...
Public Member Functions | |
__invoke (callable $callable, ServerRequestInterface $request, ResponseInterface $response, array $routeArguments) | |
Invoke a route callable. More... | |
Defines a contract for invoking a route callable.
Definition at line 17 of file InvocationStrategyInterface.php.
Slim\Interfaces\InvocationStrategyInterface::__invoke | ( | callable | $callable, |
ServerRequestInterface | $request, | ||
ResponseInterface | $response, | ||
array | $routeArguments | ||
) |
Invoke a route callable.
callable | $callable | The callable to invoke using the strategy. |
ServerRequestInterface | $request | The request object. |
ResponseInterface | $response | The response object. |
array | $routeArguments | The route's placholder arguments |
Implemented in Slim\Handlers\Strategies\RequestResponseArgs, and Slim\Handlers\Strategies\RequestResponse.