Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
22 | final class Property implements HasType, HasVisibility, CanBeStatic, Stringable |
||
23 | { |
||
24 | use WithVisibility; |
||
25 | use WithStaticModifier; |
||
26 | use WithVariable; |
||
27 | |||
28 | 51 | public function __construct(Variable $variable, Visibility $visibility, bool $isStatic = false) |
|
33 | } |
||
34 | |||
35 | /** @return Name[] */ |
||
36 | 14 | public function references(): array |
|
37 | { |
||
38 | 14 | return $this->variable->references(); |
|
39 | } |
||
40 | |||
41 | 14 | public function __toString(): string |
|
47 | ); |
||
48 | } |
||
50 |
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