| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class EventServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | protected $listen = [ |
||
| 10 | \FaithGen\Sermons\Events\Created::class => [ |
||
|
|
|||
| 11 | \FaithGen\Sermons\Listeners\Created\UploadImage::class, |
||
| 12 | \FaithGen\Sermons\Listeners\Created\ProcessImage::class, |
||
| 13 | \FaithGen\Sermons\Listeners\Created\MessageFollowUsers::class, |
||
| 14 | \FaithGen\Sermons\Listeners\Created\S3Upload::class, |
||
| 15 | ], |
||
| 16 | ]; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Bootstrap services. |
||
| 20 | * |
||
| 21 | * @return void |
||
| 22 | */ |
||
| 23 | public function boot() |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Register services. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public function register() |
||
| 38 |
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