Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class ServiceProvider extends BaseServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Bootstrap the application services. |
||
12 | */ |
||
13 | public function boot() |
||
14 | { |
||
15 | if ($this->app->runningInConsole()) { |
||
16 | $this->commands([ |
||
17 | RepositoryMakeCommand::class, |
||
18 | ]); |
||
19 | } |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Register the application services. |
||
24 | */ |
||
25 | public function register() |
||
27 | // |
||
28 | } |
||
30 |