// @TODO: remove nested on Annotation plugin update
if(phpDocAttrList != null) {
if(phpDocAttrList.getNode().getElementType() == PhpDocElementTypes.phpDocAttributeList) {
PhpPsiElement phpPsiElement = phpDocAttrList.getFirstPsiChild();
if(phpPsiElement instanceof StringLiteralExpression) {
PhpClass phpClass = de.espend.idea.php.annotation.util.PhpElementsUtil.getClassInsideAnnotation(((StringLiteralExpression) phpPsiElement));
if(phpClass != null) {
List<DoctrineModelField> lists = EntityHelper.getModelFields(phpClass);
if(lists.size() > 0) {
return new PsiReference[] {
new EntityReference((StringLiteralExpression) element, lists)