ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Dispatcher.php
Go to the documentation of this file.
1<?php
2
3namespace FastRoute;
4
5interface Dispatcher
6{
7 const NOT_FOUND = 0;
8 const FOUND = 1;
9 const METHOD_NOT_ALLOWED = 2;
10
25 public function dispatch($httpMethod, $uri);
26}
An exception for terminatinating execution or to throw for unit testing.
dispatch($httpMethod, $uri)
Dispatches against the provided HTTP method verb and URI.