Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 5 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | public function boot() |
||
10 | { |
||
11 | $this->publishes([ |
||
12 | dirname(__DIR__).'/config/repository.php' => config_path('repository.php'), |
||
13 | ], 'modular-config'); |
||
14 | $this->publishes([ |
||
15 | dirname(__DIR__).'/config/modules.php' => config_path('modules.php'), |
||
16 | ], 'modular-config'); |
||
17 | $this->publishes([ |
||
18 | dirname(__DIR__).'/stubs/example' => base_path('modules/Example'), |
||
19 | ], 'modular-example'); |
||
20 | } |
||
32 |