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