| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 15 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 9 | 
| CRAP Score | 2.004 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 23 | public function boot()  | 
            ||
| 24 | 67 |     { | 
            |
| 25 | 67 |         if ($this->app->runningInConsole()) { | 
            |
| 26 | 67 | $this->publishes([  | 
            |
| 27 |                 __DIR__.'/../config/assetlibrary.php' => config_path('assetlibrary.php'), | 
            ||
| 28 | 67 | ], 'config');  | 
            |
| 29 | |||
| 30 | 67 | $this->mergeConfigFrom(__DIR__.'/../config/assetlibrary.php', 'assetlibrary');  | 
            |
| 31 | |||
| 32 | 67 | $this->publishMigrations();  | 
            |
| 33 | |||
| 34 | 67 |             $this->app->bind('command.assetlibrary:migrate-image', ImageToAssetMigrateCommand::class); | 
            |
| 35 | 67 | ||
| 36 | $this->commands([  | 
            ||
| 37 | 67 | 'command.assetlibrary:migrate-image',  | 
            |
| 38 | ]);  | 
            ||
| 58 | 
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.