1 | <?php |
||
22 | class EnumValueDefinitionNode extends Rule |
||
23 | { |
||
24 | use DirectivesProvider; |
||
25 | use DescriptionProvider; |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getValueName(): string |
||
34 | |||
35 | /** |
||
36 | * @return null|TypeHintNode|NodeInterface |
||
37 | */ |
||
38 | public function getTypeHint(): ?TypeHintNode |
||
42 | |||
43 | /** |
||
44 | * @return null|BaseValueNode|NodeInterface |
||
45 | */ |
||
46 | public function getValue(): ?BaseValueNode |
||
50 | } |
||
51 |
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.