src/main/java/lt/martynassateika/idea/codeigniter/helper/HelperCompletionProvider.java [104:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return false;
  }

  @NotNull
  public static PsiElementPattern.Capture<LeafPsiElement> getPlace() {
    // helper('foo')
    // helper(array('foo', 'bar', 'baz'))
    return PlatformPatterns
        .psiElement(LeafPsiElement.class)
        .withParent(StringLiteralExpression.class)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/lt/martynassateika/idea/codeigniter/language/LanguageCompletionProvider.java [95:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return false;
  }

  @NotNull
  public static PsiElementPattern.Capture<LeafPsiElement> getPlace() {
    // lang('foo');
    return PlatformPatterns
        .psiElement(LeafPsiElement.class)
        .withParent(StringLiteralExpression.class)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



