Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class Pair |
||
14 | { |
||
15 | /** @var T */ |
||
|
|||
16 | private $key; |
||
17 | /** @var S */ |
||
18 | private $value; |
||
19 | |||
20 | /** |
||
21 | * @internal You should never have to manually create this object |
||
22 | * @param T $key |
||
23 | 40 | * @param S $value |
|
24 | */ |
||
25 | 40 | public function __construct($key, $value) |
|
29 | } |
||
30 | |||
31 | /** |
||
32 | 20 | * @return T |
|
33 | */ |
||
34 | 20 | public function key() |
|
37 | } |
||
38 | |||
39 | /** |
||
40 | 17 | * @return S |
|
41 | */ |
||
42 | 17 | public function value() |
|
47 |
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