Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | abstract class AbstractUri implements Stringable |
||
14 | { |
||
15 | /** @var string */ |
||
16 | public $scheme; |
||
17 | |||
18 | /** @var string */ |
||
19 | public $host; |
||
20 | |||
21 | /** @var string */ |
||
22 | public $path; |
||
23 | |||
24 | /** |
||
25 | * Associative query array |
||
26 | * |
||
27 | * @var Query |
||
|
|||
28 | */ |
||
29 | public $query = []; |
||
30 | |||
31 | /** @var string */ |
||
32 | public $method = 'get'; |
||
33 | |||
34 | /** @return string */ |
||
35 | #[Override] |
||
41 |
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