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