Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3.0987 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | 68 | public function boot(): void |
|
17 | { |
||
18 | 68 | QueryConfiguration::setPerPage((int) config('query-builder.per_page.default')); |
|
19 | 68 | QueryConfiguration::setPageName((string) config('query-builder.per_page.key')); |
|
20 | 68 | if (! $this->app->runningInConsole()) { |
|
21 | return; |
||
22 | } |
||
23 | |||
24 | 68 | if (! $this->app instanceof Laravel) { |
|
25 | return; |
||
26 | } |
||
27 | |||
28 | 68 | $this->publishes([ |
|
29 | 68 | $this->getConfigPath() => config_path('query-builder.php'), |
|
30 | ], 'config'); |
||
31 | } |
||
52 |
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