return new PsiReference[0];
}
// @Foo("template.html.twig")
if(annotationPropertyParameter.getType() == AnnotationPropertyParameter.Type.DEFAULT) {
return new PsiReference[]{ new TemplateReference((StringLiteralExpression) annotationPropertyParameter.getElement()) };
}
// @Foo(template="template.html.twig")
if(annotationPropertyParameter.getType() == AnnotationPropertyParameter.Type.PROPERTY_VALUE || "template".equals(annotationPropertyParameter.getPropertyName())) {
return new PsiReference[]{ new TemplateReference((StringLiteralExpression) annotationPropertyParameter.getElement()) };
}
return new PsiReference[0];
}