| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class NotLoggedIn implements DaftMiddleware |
||
| 10 | { |
||
| 11 | public static function DaftRouterMiddlewareHandler( |
||
| 12 | Request $request, |
||
| 13 | ? Response $response |
||
| 14 | ) : ? Response { |
||
| 15 | return null; |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return array<int, string> URI prefixes |
||
| 20 | */ |
||
| 21 | public static function DaftRouterRoutePrefixExceptions() : array |
||
| 24 | } |
||
| 25 | } |
||
| 26 |