Skip to content

Commit 7d69766

Browse files
Bugfix-765: Fixed bug for the PluginLineMarkerProvider
1 parent 0bb3c44 commit 7d69766

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/com/magento/idea/magento2plugin/linemarker/php/PluginLineMarkerProvider.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@ public List<PhpClass> getPluginsForClass(final @NotNull PhpClass phpClass) {
9292
);
9393

9494
for (final PhpClass parent : phpClass.getSupers()) {
95+
if (classPluginsMap.containsKey(parent.getFQN().substring(1))) {
96+
continue;
97+
}
9598
pluginsForClass.addAll(getPluginsForClass(parent));
9699
}
97100

0 commit comments

Comments
 (0)