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