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 964e88f commit a58679cCopy full SHA for a58679c
src/com/magento/idea/magento2uct/inspections/php/UsedTypeInspection.java
@@ -34,9 +34,9 @@ public abstract class UsedTypeInspection extends PhpInspection {
34
35
@Override
36
public void visitPhpClassReference(final ClassReference reference) {
37
- if ((reference.getContext() instanceof PhpUse)
38
- || (reference.getContext() instanceof ExtendsList)
39
- || (reference.getContext() instanceof ImplementsList)) {
+ if (reference.getContext() instanceof PhpUse
+ || reference.getContext() instanceof ExtendsList
+ || reference.getContext() instanceof ImplementsList) {
40
return;
41
}
42
final Project project = reference.getProject();
0 commit comments