| 1 | <?php |
||
| 21 | class Special implements RuleInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * |
||
| 25 | * Invokes the special matching logic on each individual Route, if any. |
||
| 26 | * |
||
| 27 | * @param ServerRequestInterface $request The HTTP request. |
||
| 28 | * |
||
| 29 | * @param Route $route The route. |
||
| 30 | * |
||
| 31 | * @return bool True on success, false on failure. |
||
| 32 | * |
||
| 33 | */ |
||
| 34 | 4 | public function __invoke(ServerRequestInterface $request, Route $route) |
|
| 43 | } |
||
| 44 |