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