1 | <?php |
||
7 | abstract class RouteServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Set the root controller namespace for the application. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | protected function setRootControllerNamespace() |
||
19 | |||
20 | /** |
||
21 | * Add middleware to the router. |
||
22 | * |
||
23 | * @param array $routeMiddleware |
||
24 | * @return void |
||
25 | */ |
||
26 | protected function addRouteMiddleware($routeMiddleware) |
||
34 | |||
35 | /** |
||
36 | * Add middleware groups to the router. |
||
37 | * |
||
38 | * @param array $middlewareGroups |
||
39 | * @return void |
||
40 | */ |
||
41 | protected function addMiddlewareGroups($middlewareGroups) |
||
51 | } |
||
52 |