| 1 | <?php |
||
| 22 | class ArgumentDefinitionNode extends Rule |
||
| 23 | { |
||
| 24 | use DescriptionProvider; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return TypeHintNode|NodeInterface |
||
| 28 | */ |
||
| 29 | public function getTypeHint(): TypeHintNode |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function getArgumentName(): string |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return null|ValueInterface|NodeInterface |
||
| 44 | */ |
||
| 45 | public function getDefaultValue(): ?ValueInterface |
||
| 52 | } |
||
| 53 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.