| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class ProcessingServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Register services. |
||
| 15 | */ |
||
| 16 | public function register(): void |
||
| 17 | { |
||
| 18 | $this->app->singleton(PostProcessService::class, function ($app) { |
||
| 19 | return new PostProcessService(); |
||
| 20 | }); |
||
| 21 | |||
| 22 | $this->app->singleton(ReleaseProcessingService::class, function ($app) { |
||
| 23 | return new ReleaseProcessingService(); |
||
| 24 | }); |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Bootstrap services. |
||
| 29 | */ |
||
| 30 | public function boot(): void |
||
| 32 | // |
||
| 33 | } |
||
| 36 |
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