| 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 | ||
| 30 | public function __invoke(): Closure | ||
| 31 |     { | ||
| 32 | return | ||
| 33 | /** | ||
| 34 | * @param callable(NewAType): (Closure(NewBType): NewCType) $f | ||
| 35 | * | ||
| 36 | * @return Closure(callable(NewAType): NewBType): Closure(NewAType): NewCType | ||
| 37 | */ | ||
| 38 | static fn (callable $f): Closure => | ||
| 39 | /** | ||
| 40 | * @param callable(NewAType): NewBType $g | ||
| 41 | * | ||
| 42 | * @return Closure(NewAType): NewCType | ||
| 43 | */ | ||
| 44 | static fn (callable $g): Closure => | ||
| 45 | /** | ||
| 46 | * @param NewAType $x | ||
|  | |||
| 47 | * | ||
| 48 | 19 | * @return NewCType | |
| 49 | 19 | */ | |
| 50 | 19 | static fn (mixed $x): mixed => $f($x)($g($x)); | |
| 51 | 19 | } | |
| 53 | 
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