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