Skip to content

Commit f6aa431

Browse files
committed
UCT-723: fixed checking to Interface
1 parent ddef264 commit f6aa431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/magento/idea/magento2uct/inspections/php/ImportInspection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ private boolean isInterface(final PhpUse use) {
7070
return element instanceof PhpClass && ((PhpClass) element).isInterface();
7171
}
7272

73-
return false;
73+
return use.getFQN().contains("Interface");
7474
}
7575
};
7676
}

0 commit comments

Comments
 (0)