Total Complexity | 4 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class ServiceLayerGeneratorServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | public function boot() |
||
10 | { |
||
11 | if ($this->app->runningInConsole()) { |
||
12 | $this->commands([ |
||
13 | Console\ConsoleMakeService::class, |
||
14 | Console\InstallCommand::class, |
||
15 | ]); |
||
16 | } |
||
17 | } |
||
18 | |||
19 | public function register() |
||
25 | } |
||
26 | } |
||
28 |