Total Complexity | 6 |
Total Lines | 72 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class Xml implements ValueObjectInterface |
||
17 | { |
||
18 | use CompositeValueObjectWithExtension; |
||
19 | |||
20 | public function __construct() |
||
21 | { |
||
22 | $this->specificationExtension = new SpecificationExtension([]); |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @var KebabCaseString|null |
||
27 | */ |
||
28 | private $name; |
||
29 | |||
30 | /** |
||
31 | * @var Url|null |
||
32 | */ |
||
33 | private $namespace; |
||
34 | |||
35 | /** |
||
36 | * @var KebabCaseString|null |
||
37 | */ |
||
38 | private $prefix; |
||
39 | |||
40 | /** |
||
41 | * @var bool|null |
||
42 | */ |
||
43 | private $attribute; |
||
44 | |||
45 | /** |
||
46 | * @var bool|null |
||
47 | */ |
||
48 | private $wrapped; |
||
49 | |||
50 | /** |
||
51 | * @return KebabCaseString|null |
||
52 | */ |
||
53 | public function getName(): ?KebabCaseString |
||
54 | { |
||
55 | return $this->name; |
||
56 | } |
||
57 | |||
58 | /** |
||
59 | * @return Url|null |
||
60 | */ |
||
61 | public function getNamespace(): ?Url |
||
64 | } |
||
65 | |||
66 | /** |
||
67 | * @return KebabCaseString|null |
||
68 | */ |
||
69 | public function getPrefix(): ?KebabCaseString |
||
70 | { |
||
71 | return $this->prefix; |
||
72 | } |
||
73 | |||
74 | /** |
||
75 | * @return bool |
||
76 | */ |
||
77 | public function isAttribute(): bool |
||
78 | { |
||
79 | return $this->attribute ?? false; |
||
80 | } |
||
81 | |||
82 | /** |
||
83 | * @return bool |
||
84 | */ |
||
85 | public function isWrapped(): bool |
||
88 | } |
||
89 | } |
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