Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class RouteServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Called before routes are registered. |
||
12 | * |
||
13 | * Register any model bindings or pattern based filters. |
||
14 | * |
||
15 | * @return void |
||
16 | */ |
||
17 | public function boot() |
||
18 | { |
||
19 | parent::boot(); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Define the routes for the application. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | public function map() |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * Define the "api" routes for the application. |
||
34 | * |
||
35 | * These routes are typically stateless. |
||
36 | * |
||
37 | * @return void |
||
38 | */ |
||
39 | protected function mapWebRoutes() |
||
45 |