Skip to content

Commit 3e3c5eb

Browse files
kalessilfabpot
authored andcommitted
[2.3] Static Code Analysis for Components
1 parent d626b43 commit 3e3c5eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Iterator/IteratorTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ protected function assertOrderedIteratorForGroups($expected, \Traversable $itera
5151
foreach ($expected as $subarray) {
5252
$temp = array();
5353
while (count($values) && count($temp) < count($subarray)) {
54-
array_push($temp, array_shift($values));
54+
$temp[] = array_shift($values);
5555
}
5656
sort($temp);
5757
sort($subarray);

0 commit comments

Comments
 (0)