Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function boot() |
||
15 | { |
||
16 | $this->publishes([ |
||
17 | __DIR__ . '/config/friendships.php' => config_path('friendships.php'), |
||
18 | ], 'config'); |
||
19 | |||
20 | $this->mergeConfigFrom( |
||
21 | __DIR__ . '/config/friendships.php', |
||
22 | 'friendships' |
||
23 | ); |
||
24 | |||
25 | $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
||
26 | } |
||
27 | |||
38 |