Map<String, String> importMap = AnnotationBackportUtil.getUseImportMap(phpDocComment);
if(importMap.size() > 0) {
for(PhpDocTag phpDocTag: phpDocTags) {
// resolve annotation and check for template
PhpClass phpClass = AnnotationBackportUtil.getAnnotationReference(phpDocTag, importMap);
if(phpClass != null && PhpElementsUtil.isEqualClassName(phpClass, TwigHelper.TEMPLATE_ANNOTATION_CLASS)) {
for(Map.Entry<String, PsiElement> entry: TwigUtil.getTemplateAnnotationFiles(phpDocTag).entrySet()) {
if(!uniqueTemplates.contains(entry.getKey())) {
parameter.add(new RelatedPopupGotoLineMarker.PopupGotoRelatedItem(entry.getValue(), TwigUtil.getFoldingTemplateNameOrCurrent(entry.getKey())).withIcon(TwigIcons.TwigFileIcon, Symfony2Icons.TWIG_LINE_MARKER));
uniqueTemplates.add(entry.getKey());