| Conditions | 1 |
| Paths | 1 |
| Total Lines | 21 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function register() |
||
| 15 | { |
||
| 16 | $this->commands([ |
||
| 17 | Executor::class, |
||
| 18 | ]); |
||
| 19 | |||
| 20 | $this->mergeConfigFrom( |
||
| 21 | __DIR__ . '/config/paravel.php', 'paravel' |
||
| 22 | ); |
||
| 23 | |||
| 24 | $this->publishes([ |
||
| 25 | __DIR__ . '/config/paravel.php' => base_path('config/paravel.php') |
||
| 26 | ]); |
||
| 27 | |||
| 28 | $config = config('paravel'); |
||
| 29 | |||
| 30 | $this->app->bind('paravel', function () use ($config) { |
||
| 31 | return new ParallelProcessor($config); |
||
| 32 | }); |
||
| 33 | $this->app->singleton('paravel-serializer', function () { |
||
| 34 | return new ParavelSerializer(new Serializer()); |
||
| 35 | }); |
||
| 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