| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public function boot() |
||
| 12 | { |
||
| 13 | $this->loadMigrationsFrom( |
||
| 14 | realpath(__DIR__.'/../../database/migrations') |
||
| 15 | ); |
||
| 16 | |||
| 17 | $configPath = realpath(__DIR__.'/../../config/stronghold.php'); |
||
| 18 | |||
| 19 | $this->publishes([ |
||
| 20 | $configPath => config_path('stronghold.php') |
||
| 21 | ], 'config'); |
||
| 22 | |||
| 23 | $this->mergeConfigFrom($configPath, 'stronghold'); |
||
| 24 | } |
||
| 34 |