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 16cc2fd commit 645e5aaCopy full SHA for 645e5aa
src/com/magento/idea/magento2plugin/inspections/xml/ObserverDeclarationInspection.java
@@ -3,7 +3,7 @@
3
* See COPYING.txt for license details.
4
*/
5
6
-package com.magento.idea.magento2plugin.inspections.xml;//NOPMD
+package com.magento.idea.magento2plugin.inspections.xml;
7
8
import com.intellij.codeInspection.ProblemHighlightType;
9
import com.intellij.codeInspection.ProblemsHolder;
@@ -39,7 +39,11 @@
39
import org.jetbrains.annotations.NotNull;
40
import org.jetbrains.annotations.Nullable;
41
42
-@SuppressWarnings({"PMD.ExcessiveMethodLength", "PMD.NPathComplexity"})
+@SuppressWarnings({
43
+ "PMD.ExcessiveMethodLength",
44
+ "PMD.NPathComplexity",
45
+ "PMD.ExcessiveImports",
46
+})
47
public class ObserverDeclarationInspection extends PhpInspection {
48
49
@NotNull
0 commit comments