| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class FilterServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | protected $commands = [ |
||
| 10 | 'HChamran\LaravelFilter\Commands\FilterMakeCommand' |
||
| 11 | ]; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Register services. |
||
| 15 | * |
||
| 16 | * @return void |
||
| 17 | */ |
||
| 18 | public function register() |
||
| 19 | { |
||
| 20 | $this->commands($this->commands); |
||
| 21 | $this->mergeConfigFrom(__DIR__ . '/../Config/filter.php', 'filter'); |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Bootstrap services. |
||
| 26 | * |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | public function boot() |
||
| 33 | ]); |
||
| 34 | } |
||
| 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