Skip to content

Commit a58679c

Browse files
UCT-725: Code style fixes
1 parent 964e88f commit a58679c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ public abstract class UsedTypeInspection extends PhpInspection {
3434

3535
@Override
3636
public void visitPhpClassReference(final ClassReference reference) {
37-
if ((reference.getContext() instanceof PhpUse)
38-
|| (reference.getContext() instanceof ExtendsList)
39-
|| (reference.getContext() instanceof ImplementsList)) {
37+
if (reference.getContext() instanceof PhpUse
38+
|| reference.getContext() instanceof ExtendsList
39+
|| reference.getContext() instanceof ImplementsList) {
4040
return;
4141
}
4242
final Project project = reference.getProject();

0 commit comments

Comments
 (0)