Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class GameEssentialsServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * Bootstrap the application services. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | public function boot() |
||
16 | { |
||
17 | $this->loadRoutesFrom(__DIR__.'/../api.php'); |
||
18 | $this->loadMigrationsFrom(__DIR__.'/../migrations'); |
||
19 | // $this->publishes([ |
||
20 | // __DIR__ . '/../config/game-essentials.php' => config_path('game-essentials.php'), |
||
21 | // ]); |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * Register the application services. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | public function register() |
||
34 | // $this->mergeConfigFrom( |
||
35 | // __DIR__ . '/../config/game-essentials.php', 'game-essentials' |
||
39 | } |