| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | 14 | public function boot() |
|
| 13 | { |
||
| 14 | 14 | $this->registerRoutes(); |
|
| 15 | 14 | $this->listenMailHooks(); |
|
| 16 | |||
| 17 | 14 | if ($this->app->runningInConsole()) { |
|
| 18 | 14 | $this->registerMigrations(); |
|
| 19 | |||
| 20 | 14 | $this->publishes([ |
|
| 21 | 14 | __DIR__.'/../config/notification-tracker.php' => config_path('notification-tracker.php'), |
|
| 22 | 14 | ], 'config'); |
|
| 23 | |||
| 24 | |||
| 25 | 14 | $this->commands([ |
|
| 26 | 14 | // TODO: add truncate |
|
| 56 |