‪TYPO3CMS  ‪main
TYPO3\CMS\Core\Http\DispatcherInterface Interface Reference
Inheritance diagram for TYPO3\CMS\Core\Http\DispatcherInterface:
TYPO3\CMS\Core\Http\Dispatcher TYPO3\CMS\Backend\Http\RouteDispatcher

Public Member Functions

 dispatch (ServerRequestInterface $request)
 

Detailed Description

An interface for dispatcher that delegate requests to a certain callable, typically a controller / action combination. Usually called from the RequestHandler.

This low level interface is used core internally only

Definition at line 29 of file DispatcherInterface.php.

Member Function Documentation

◆ dispatch()

TYPO3\CMS\Core\Http\DispatcherInterface::dispatch ( ServerRequestInterface  $request)

Main method to dispatch a request and its response to a callable object

Implemented in TYPO3\CMS\Backend\Http\RouteDispatcher, and TYPO3\CMS\Core\Http\Dispatcher.