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 0bb3c44 commit 7d69766Copy full SHA for 7d69766
src/com/magento/idea/magento2plugin/linemarker/php/PluginLineMarkerProvider.java
@@ -92,6 +92,9 @@ public List<PhpClass> getPluginsForClass(final @NotNull PhpClass phpClass) {
92
);
93
94
for (final PhpClass parent : phpClass.getSupers()) {
95
+ if (classPluginsMap.containsKey(parent.getFQN().substring(1))) {
96
+ continue;
97
+ }
98
pluginsForClass.addAll(getPluginsForClass(parent));
99
}
100
0 commit comments