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.
2 parents 6607841 + ccef0d6 commit 067f651Copy full SHA for 067f651
src/com/magento/idea/magento2plugin/inspections/xml/PluginDeclarationInspection.java
@@ -119,8 +119,11 @@ public void visitFile(final PsiFile file) {
119
pluginIndex,
120
file
121
);
122
+ final XmlAttribute pluginTypeAttribute =
123
+ pluginTypeXmlTag.getAttribute(ModuleDiXml.TYPE_ATTR);
124
125
if (pluginTypeDisabledAttribute != null
126
+ && pluginTypeAttribute == null
127
&& pluginTypeDisabledAttribute.getValue() != null
128
&& pluginTypeDisabledAttribute.getValue().equals("true")
129
&& !pluginTypeName.isEmpty()
0 commit comments