| Conditions | 1 |
| Paths | 1 |
| Total Lines | 23 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public static function init() |
||
| 26 | { |
||
| 27 | return [ |
||
| 28 | 'pre_system' => |
||
| 29 | [ |
||
| 30 | function() |
||
| 31 | { |
||
| 32 | function route($name, $args = NULL) |
||
| 33 | { |
||
| 34 | return Route::getRouteByName($name, $args); |
||
| 35 | } |
||
| 36 | } |
||
| 37 | ], |
||
| 38 | 'post_controller_constructor' => |
||
| 39 | [ |
||
| 40 | function() |
||
| 41 | { |
||
| 42 | Middleware::init(); |
||
| 43 | } |
||
| 44 | ], |
||
| 45 | |||
| 46 | ]; |
||
| 47 | } |
||
| 48 | } |