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