| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public static function param(ReflectionParameter $parameter): \Iterator |
||
| 15 | { |
||
| 16 | yield from MissingMethodParamType::param($parameter); |
||
| 17 | yield from MissingMethodParamTypeWithDocBlock::param($parameter); |
||
| 18 | yield from MethodParamTypeDoesNotCoincideWithDocBlock::param($parameter); |
||
| 19 | } |
||
| 20 | } |
||
| 21 |