Skip to content

Commit 4fb1ff0

Browse files
committed
fix(stan): remove redundant array_values in IntArrayDecoder
PHPStan: $out is already a list built via sequential append.
1 parent 2b977aa commit 4fb1ff0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/components/minishop3/src/Utils/IntArrayDecoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ public static function decode($input): array
4444
}
4545
}
4646

47-
return array_values($out);
47+
return $out;
4848
}
4949
}

0 commit comments

Comments
 (0)