php/src/ru/adelf/idea/dotenv/php/PhpunitEnvCompletionContributor.java [44:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                           return;
                       }

                       fillCompletionResultSet(completionResultSet, psiElement.getProject());
                   }
               });
    }

    @Override
    public @Nullable PsiElement[] getGotoDeclarationTargets(@Nullable PsiElement psiElement, int i, Editor editor) {

        if (psiElement == null) {
            return PsiElement.EMPTY_ARRAY;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



python/src/ru/adelf/idea/dotenv/python/PythonEnvCompletionProvider.java [33:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    return;
                }

                fillCompletionResultSet(completionResultSet, psiElement.getProject());
            }
        });
    }

    @Override
    public @Nullable PsiElement[] getGotoDeclarationTargets(@Nullable PsiElement psiElement, int i, Editor editor) {

        if (psiElement == null) {
            return PsiElement.EMPTY_ARRAY;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



