interface DispatchableInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-stdlib/src/DispatchableInterface.php \Zend\Stdlib\DispatchableInterface
Hierarchy
- interface \Zend\Stdlib\DispatchableInterface
Expanded class hierarchy of DispatchableInterface
All classes that implement DispatchableInterface
File
- vendor/
zendframework/ zend-stdlib/ src/ DispatchableInterface.php, line 12
Namespace
Zend\StdlibView source
interface DispatchableInterface {
/**
* Dispatch a request
*
* @param RequestInterface $request
* @param null|ResponseInterface $response
* @return Response|mixed
*/
public function dispatch(RequestInterface $request, ResponseInterface $response = null);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DispatchableInterface:: |
public | function | Dispatch a request |