Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function __invoke(): Closure |
||
26 | { |
||
27 | return |
||
28 | /** |
||
29 | * @param NewAType $x |
||
|
|||
30 | * |
||
31 | * @return Closure(callable(NewBType): Closure(NewAType): NewCType): Closure(NewBType): NewCType |
||
32 | */ |
||
33 | static fn (mixed $x): Closure => |
||
34 | /** |
||
35 | * @param callable(NewBType): (Closure(NewAType): NewCType) $f |
||
36 | * |
||
37 | * @return Closure(NewBType): NewCType |
||
38 | */ |
||
39 | static fn (callable $f): Closure => |
||
40 | /** |
||
41 | * @param NewBType $y |
||
42 | * |
||
43 | 2 | * @return NewCType |
|
44 | 2 | */ |
|
45 | 2 | static fn (mixed $y): mixed => (($f)($y))($x); |
|
46 | 2 | } |
|
48 |
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