Total Complexity | 4 |
Total Lines | 56 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | class SqlInsertQueryBuilder extends SqlQueryBuilder implements Contract |
||
26 | { |
||
27 | /** @var Value[] */ |
||
28 | protected array $values = []; |
||
29 | |||
30 | /** |
||
31 | * @inheritDoc |
||
32 | */ |
||
33 | public function withSet(Value ...$values): static |
||
34 | { |
||
35 | $new = clone $this; |
||
36 | |||
37 | $new->values = $values; |
||
38 | |||
39 | return $new; |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * @inheritDoc |
||
44 | */ |
||
45 | public function withAddedSet(Value ...$values): static |
||
46 | { |
||
47 | $new = clone $this; |
||
48 | |||
49 | $new->values = array_merge($new->values, $values); |
||
50 | |||
51 | return $new; |
||
52 | } |
||
53 | |||
54 | /** |
||
55 | * @inheritDoc |
||
56 | */ |
||
57 | public function __toString(): string |
||
81 | } |
||
82 | } |
||
83 |
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