| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 14 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 12 | public function boot() | ||
| 13 |     { | ||
| 14 | /* | ||
| 15 | * Optional methods to load your package assets | ||
| 16 | */ | ||
| 17 |         if ($this->app->runningInConsole()) { | ||
| 18 | $this->commands([ | ||
| 19 | ConsoleCommand::class | ||
| 20 | ]); | ||
| 21 | $this->publishes([ | ||
| 22 |                 __DIR__.'/../config/config.php' => config_path('cleanify.php'), | ||
| 23 | ], 'config'); | ||
| 24 | } | ||
| 25 | } | ||
| 26 | |||
| 41 |