| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | public function boot() |
||
| 8 | { |
||
| 9 | $this->publishes([ |
||
| 10 | __DIR__ . '/../config/settings.php' => $this->app->configPath('short_url.php'), |
||
| 11 | ], 'config'); |
||
| 12 | |||
| 13 | $this->loadMigrationsFrom( |
||
| 14 | __DIR__ . '/../database/migrations' |
||
| 15 | ); |
||
| 16 | |||
| 17 | $this->loadRoutesFrom( |
||
| 18 | __DIR__ . '/../routes/web.php' |
||
| 19 | ); |
||
| 30 |