Conditions | 1 |
Paths | 1 |
Total Lines | 24 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | 2 | public function __invoke(): Closure |
|
25 | { |
||
26 | return |
||
27 | /** |
||
28 | * @param callable(NewAType): callable(NewBType): NewCType $f |
||
29 | * |
||
30 | * @return Closure(NewBType): Closure(NewAType): NewCType |
||
31 | */ |
||
32 | static function (callable $f): Closure { |
||
33 | return |
||
34 | /** |
||
35 | * @param NewBType $x |
||
|
|||
36 | * |
||
37 | * @return Closure(NewAType):(NewCType) |
||
38 | */ |
||
39 | static function ($x) use ($f): Closure { |
||
40 | return |
||
41 | /** |
||
42 | * @param NewAType $y |
||
43 | * |
||
44 | * @return NewCType |
||
45 | */ |
||
46 | static function ($y) use ($f, $x) { |
||
47 | 2 | return ($f)($y)($x); |
|
48 | 2 | }; |
|
53 |
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