Skip to content

Commit 27b5a4f

Browse files
authored
php8.3 release page example code fix (#836)
1 parent c6525ac commit 27b5a4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

releases/8.3/release.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ function getBytesFromString(string $string, int $length) {
326326
$result = '';
327327
for ($i = 0; $i < $length; $i++) {
328328
// random_int is not seedable for testing, but secure.
329-
$result .= $string[random_int(0, $stringLength - 1)]);
329+
$result .= $string[random_int(0, $stringLength - 1)];
330330
}
331331
332332
return $result;

0 commit comments

Comments
 (0)