Skip to content

Commit c8b39ed

Browse files
committed
cs fix
1 parent b2626a4 commit c8b39ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rules/DowngradePhp82/Rector/FuncCall/DowngradeIteratorCountToArrayRector.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ private function shouldSkip(Type $type, Expr $expr): bool
113113
}
114114

115115
// already has object type check
116-
return $type->isObject()->yes();
116+
return $type->isObject()
117+
->yes();
117118
}
118119
}

0 commit comments

Comments
 (0)