Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
25 | 8 | public function boot(): void |
|
26 | { |
||
27 | 8 | $this->loadMigrationsFrom(__DIR__ . '/../migrations'); |
|
28 | |||
29 | 8 | $this->publishes([ |
|
30 | 8 | __DIR__ . '/../migrations' => database_path('migrations'), |
|
31 | 8 | ], 'migrations'); |
|
32 | |||
33 | 8 | $this->publishes([ |
|
34 | 8 | __DIR__ . '/../config/versionable.php' => config_path('versionable.php'), |
|
35 | 8 | ], 'config'); |
|
36 | 8 | } |
|
37 | |||
49 |