| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function boot(): void |
||
| 19 | { |
||
| 20 | if (! $this->app->runningInConsole()) { |
||
| 21 | return; |
||
| 22 | } |
||
| 23 | |||
| 24 | $this->commands([WarmUpCommand::class]); |
||
| 25 | |||
| 26 | if (function_exists('config_path')) { |
||
| 27 | $this->publishes([ |
||
| 28 | dirname(__DIR__).'/config/config.php' => config_path('wallet-vacuum.php'), |
||
| 29 | ], 'laravel-wallet-vacuum-config'); |
||
| 30 | } |
||
| 47 |