Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class Value extends AbstractDefinition implements DefinitionInterface |
||
21 | { |
||
22 | |||
23 | /** |
||
24 | * @var mixed |
||
25 | */ |
||
26 | protected $data; |
||
27 | |||
28 | /** |
||
29 | * Value definition |
||
30 | * |
||
31 | * @param mixed $data |
||
32 | */ |
||
33 | public function __construct($data) |
||
34 | { |
||
35 | $this->data = $data; |
||
36 | } |
||
37 | 6 | ||
38 | /** |
||
39 | 6 | * Resolves the definition into a scalar or object |
|
40 | * |
||
41 | * @return mixed |
||
42 | */ |
||
43 | public function resolve(): mixed |
||
46 | } |
||
47 | } |
||
48 |
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