| 1 | <?php |
||
| 10 | final class MissingFunctionParamType implements Anomaly |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ReflectionParameter |
||
| 14 | */ |
||
| 15 | private $parameter; |
||
| 16 | |||
| 17 | private function __construct(ReflectionParameter $parameter) |
||
| 21 | |||
| 22 | public static function param(ReflectionParameter $parameter): \Iterator |
||
| 28 | |||
| 29 | public function message(): string |
||
| 39 | } |
||
| 40 |