Total Complexity | 2 |
Total Lines | 26 |
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() |
||
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() |
||
30 | { |
||
31 | $this->app->make('Furic\GameEssentials\Http\Controllers\GameController'); |
||
32 | $this->app->make('Furic\GameEssentials\Http\Controllers\PlayerController'); |
||
33 | $this->app->make('Furic\GameEssentials\Http\Controllers\PlayerGameController'); |
||
39 | } |