Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class TaggingServiceProvider extends ServiceProvider |
||
12 | { |
||
13 | protected $commands = [ |
||
14 | GenerateTagGroup::class, |
||
15 | ]; |
||
16 | |||
17 | /** |
||
18 | * Bootstrap the application events. |
||
19 | */ |
||
20 | public function boot() |
||
21 | { |
||
22 | $this->publishes([ |
||
23 | __DIR__.'/../../config/tagging.php' => config_path('tagging.php'), |
||
24 | ], 'config'); |
||
25 | |||
26 | $this->loadMigrationsFrom(realpath(__DIR__.'/../../migrations')); |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Register the service provider. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function register() |
||
37 | } |
||
38 | } |
||
39 |