| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 15 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 10 | 
| CRAP Score | 2 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 22 | 77 | public function boot()  | 
            |
| 23 |     { | 
            ||
| 24 | 77 |         if ($this->app->runningInConsole()) { | 
            |
| 25 | 77 | $this->publishes([  | 
            |
| 26 | 77 |                 __DIR__.'/../config/assetlibrary.php' => config_path('assetlibrary.php'), | 
            |
| 27 | 77 | ], 'config');  | 
            |
| 28 | |||
| 29 | 77 | $this->mergeConfigFrom(__DIR__.'/../config/assetlibrary.php', 'assetlibrary');  | 
            |
| 30 | |||
| 31 | 77 | $this->publishMigrations();  | 
            |
| 32 | |||
| 33 | 77 |             $this->app->bind('command.assetlibrary:migrate-image', ImageToAssetMigrateCommand::class); | 
            |
| 34 | |||
| 35 | 77 | $this->commands([  | 
            |
| 36 | 77 | 'command.assetlibrary:migrate-image',  | 
            |
| 37 | ]);  | 
            ||
| 57 | 
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.