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 |
||
26 | 2 | public function __invoke(): Closure |
|
27 | { |
||
28 | return |
||
29 | /** |
||
30 | * @param callable(NewAType): callable(NewBType): NewCType $f |
||
31 | * |
||
32 | * @return Closure(callable(NewDType): NewBType): Closure(NewDType): Closure(NewAType): NewCType |
||
33 | */ |
||
34 | static function (callable $f): Closure { |
||
35 | return |
||
36 | /** |
||
37 | * @param callable(NewDType): NewBType $g |
||
38 | * |
||
39 | * @return Closure(NewDType): Closure(NewAType): NewCType |
||
40 | */ |
||
41 | static function (callable $g) use ($f): Closure { |
||
42 | return |
||
43 | /** |
||
44 | * @param NewDType $x |
||
|
|||
45 | * |
||
46 | * @return Closure(NewAType): NewCType |
||
47 | */ |
||
48 | static function ($x) use ($f, $g): Closure { |
||
49 | return |
||
50 | /** |
||
51 | * @param NewAType $y |
||
52 | * |
||
53 | * @return NewCType |
||
54 | */ |
||
55 | static function ($y) use ($f, $g, $x) { |
||
56 | 2 | return (($f)($y))(($g)($x)); |
|
57 | 2 | }; |
|
63 |
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