We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67e7c1b commit b98e68aCopy full SHA for b98e68a
src/main/java/com/magento/idea/magento2plugin/linemarker/php/PluginLineMarkerProvider.java
@@ -72,8 +72,9 @@ public void collectSlowLineMarkers(
72
}
73
74
if (!results.isEmpty()) {
75
- final ASTNode node = psiElement.getNode().findChildByType(PhpTokenTypes.IDENTIFIER);
76
- if(node != null) {
+ final ASTNode node = psiElement.getNode()
+ .findChildByType(PhpTokenTypes.IDENTIFIER);
77
+ if (node != null) {
78
// Add the property to a collection of line marker info
79
final NavigationGutterIconBuilder<PsiElement> builder =
80
NavigationGutterIconBuilder.create(AllIcons.Nodes.Plugin)
0 commit comments