| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class EventServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | protected $listen = [ |
||
| 10 | \Innoflash\Events\Saved::class => [ |
||
|
|
|||
| 11 | \Innoflash\Events\Listeners\Saved\UploadImage::class, |
||
| 12 | \Innoflash\Events\Listeners\Saved\ProcessImage::class, |
||
| 13 | \Innoflash\Events\Listeners\Saved\S3Upload::class, |
||
| 14 | ], |
||
| 15 | \Innoflash\Events\Guest\Saved::class => [ |
||
| 16 | \Innoflash\Events\Listeners\Guest\Saved\UploadImage::class, |
||
| 17 | \Innoflash\Events\Listeners\Guest\Saved\ProcessImage::class, |
||
| 18 | \Innoflash\Events\Listeners\Guest\Saved\S3Upload::class, |
||
| 19 | ], |
||
| 20 | ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Bootstrap services. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | public function boot() |
||
| 28 | { |
||
| 29 | parent::boot(); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Register services. |
||
| 34 | * |
||
| 35 | * @return void |
||
| 36 | */ |
||
| 37 | public function register() |
||
| 39 | // |
||
| 40 | } |
||
| 42 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths