1 | <?php |
||
7 | abstract class RouteServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Set the root controller namespace for the application. |
||
11 | */ |
||
12 | protected function setRootControllerNamespace() |
||
17 | |||
18 | /** |
||
19 | * Add middleware to the router. |
||
20 | * |
||
21 | * @param array $routeMiddleware |
||
22 | */ |
||
23 | protected function addRouteMiddleware($routeMiddleware) |
||
31 | |||
32 | /** |
||
33 | * Add middleware groups to the router. |
||
34 | * |
||
35 | * @param array $middlewareGroups |
||
36 | */ |
||
37 | protected function addMiddlewareGroups($middlewareGroups) |
||
47 | } |
||
48 |