Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
10 | 36 | public function boot() |
|
11 | { |
||
12 | 36 | $this->loadMigrationsFrom( |
|
13 | 36 | __DIR__.'/../../database/migrations' |
|
14 | ); |
||
15 | |||
16 | 36 | $this->publishes([ |
|
17 | 36 | __DIR__ . '/../../resources/config/categorizable.php' => config_path('categorizable.php'), |
|
18 | 36 | ], 'config'); |
|
19 | 36 | } |
|
20 | 36 | public function register() |
|
25 |