99import com .intellij .util .ProcessingContext ;
1010import com .jetbrains .php .lang .PhpLanguage ;
1111import com .jetbrains .php .lang .documentation .phpdoc .lexer .PhpDocTokenTypes ;
12- import com .jetbrains .php .lang .documentation .phpdoc .parser .BasicPhpDocStubElementTypes ;
1312import com .jetbrains .php .lang .documentation .phpdoc .parser .PhpDocElementTypes ;
13+ import com .jetbrains .php .lang .documentation .phpdoc .parser .PhpDocStubElementTypes ;
1414import com .jetbrains .php .lang .documentation .phpdoc .psi .PhpDocComment ;
1515import com .jetbrains .php .lang .documentation .phpdoc .psi .PhpDocPsiElement ;
1616import com .jetbrains .php .lang .lexer .PhpTokenTypes ;
@@ -76,7 +76,7 @@ public boolean accepts(@NotNull PsiElement psiElement, ProcessingContext process
7676
7777 )
7878 .inside (PlatformPatterns
79- .psiElement (BasicPhpDocStubElementTypes .phpDocTag )
79+ .psiElement (PhpDocStubElementTypes .phpDocTag )
8080 )
8181 .withLanguage (PhpLanguage .INSTANCE );
8282 }
@@ -104,7 +104,7 @@ public static ElementPattern<PsiElement> getTextIdentifier() {
104104 .withParent (PlatformPatterns
105105 .psiElement (PhpDocElementTypes .phpDocAttributeList )
106106 .withParent (PlatformPatterns
107- .psiElement (BasicPhpDocStubElementTypes .phpDocTag )
107+ .psiElement (PhpDocStubElementTypes .phpDocTag )
108108 )
109109 )
110110 );
@@ -146,7 +146,7 @@ public static PsiElementPattern.Capture<PsiElement> getDefaultPropertyValue() {
146146 .withParent (PlatformPatterns .psiElement (StringLiteralExpression .class ).withParent (PlatformPatterns
147147 .psiElement (PhpDocElementTypes .phpDocAttributeList )
148148 .withParent (PlatformPatterns
149- .psiElement (BasicPhpDocStubElementTypes .phpDocTag )
149+ .psiElement (PhpDocStubElementTypes .phpDocTag )
150150 )
151151 ))
152152 .withLanguage (PhpLanguage .INSTANCE );
@@ -164,7 +164,7 @@ public static ElementPattern<StringLiteralExpression> getDefaultPropertyValueStr
164164 .withParent (PlatformPatterns
165165 .psiElement (PhpDocElementTypes .phpDocAttributeList )
166166 .withParent (PlatformPatterns
167- .psiElement (BasicPhpDocStubElementTypes .phpDocTag )
167+ .psiElement (PhpDocStubElementTypes .phpDocTag )
168168 )
169169 )
170170 .withLanguage (PhpLanguage .INSTANCE );
@@ -182,7 +182,7 @@ public static ElementPattern<StringLiteralExpression> getPropertyValueString() {
182182 .withParent (PlatformPatterns
183183 .psiElement (PhpDocElementTypes .phpDocAttributeList )
184184 .withParent (PlatformPatterns
185- .psiElement (BasicPhpDocStubElementTypes .phpDocTag )
185+ .psiElement (PhpDocStubElementTypes .phpDocTag )
186186 )
187187 )
188188 .withLanguage (PhpLanguage .INSTANCE );
0 commit comments