Conditions | 1 |
Paths | 1 |
Total Lines | 33 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function __invoke(): Closure |
||
33 | { |
||
34 | return |
||
35 | /** |
||
36 | * @param callable(NewAType): (callable(NewDType): NewEType) $f |
||
37 | * |
||
38 | * @return Closure(NewAType): Closure(callable(NewBType): callable(NewCType): NewDType): Closure(NewBType): Closure(NewCType): NewEType |
||
39 | */ |
||
40 | static fn (callable $f): Closure => |
||
41 | /** |
||
42 | * @param NewAType $x |
||
|
|||
43 | * |
||
44 | * @return Closure(callable(NewBType): callable(NewCType): NewDType): Closure(NewBType): Closure(NewCType): NewEType |
||
45 | */ |
||
46 | static fn (mixed $x): Closure => |
||
47 | /** |
||
48 | * @param callable(NewBType): (callable(NewCType): NewDType) $g |
||
49 | * |
||
50 | * @return Closure(NewBType): Closure(NewCType): NewEType |
||
51 | */ |
||
52 | static fn (callable $g): Closure => |
||
53 | /** |
||
54 | * @param NewBType $y |
||
55 | * |
||
56 | * @return Closure(NewCType): NewEType |
||
57 | */ |
||
58 | static fn (mixed $y): Closure => |
||
59 | /** |
||
60 | * @param NewCType $z |
||
61 | * |
||
62 | * @return NewEType |
||
63 | */ |
||
64 | 2 | static fn (mixed $z): mixed => (($f)($x))((($g)($y))($z)); |
|
65 | 2 | } |
|
67 |
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