Add Nullable for YAMLKeyValue::getParentMapping to sync it with YAMLKeyValueImpl

npe issue because of not seeing nullable return value: https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/942
This commit is contained in:
Daniel Espendiller
2018-07-23 16:06:47 +03:00
committed by Valentin Fondaratov
parent 4d059a4130
commit 92e09b2b89
@@ -27,7 +27,8 @@ public interface YAMLKeyValue extends YAMLPsiElement, PsiNamedElement, PomTarget
@NotNull
String getValueText();
@Nullable
YAMLMapping getParentMapping();
void setValue(@NotNull YAMLValue value);
}
}