Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class LaradeckAddressGeneratorServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Perform post-registration booting of services. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | public function boot() |
||
17 | { |
||
18 | if ($this->app->runningInConsole()) { |
||
19 | $this->commands([ |
||
20 | ParseCityAddressRu::class, |
||
21 | GetStat::class, |
||
22 | ]); |
||
23 | } |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Register any package services. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function register() |
||
33 | // |
||
34 | } |
||
35 | } |