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 caf1a28 commit eb8e209Copy full SHA for eb8e209
src/com/magento/idea/magento2plugin/inspections/php/PluginInspection.java
@@ -187,6 +187,9 @@ private void checkParametersCompatibility(
187
188
int index = 0;
189
for (final Parameter pluginMethodParameter : pluginMethodParameters) {
190
+ if (pluginMethodParameter.getName().isEmpty()) {
191
+ continue;
192
+ }
193
index++;
194
String declaredType = pluginMethodParameter.getDeclaredType().toString();
195
0 commit comments