}
public static Map<String, PsiElement> getTemplateAnnotationFilesWithSiblingMethod(PhpDocTag phpDocTag) {
Map<String, PsiElement> targets = TwigUtil.getTemplateAnnotationFiles(phpDocTag);
PhpDocComment phpDocComment = PsiTreeUtil.getParentOfType(phpDocTag, PhpDocComment.class);
if(phpDocComment != null) {
PsiElement method = phpDocComment.getNextPsiSibling();
if(method instanceof Method) {
String templateName = TwigUtil.getControllerMethodShortcut((Method) method);
if(templateName != null) {
for(PsiElement psiElement: TwigHelper.getTemplatePsiElements(method.getProject(), templateName)) {
targets.put(templateName, psiElement);