Skip to content

Commit b68f820

Browse files
committed
Use $start_index in array_fill()
Go back to what the manual calls is ... it seems clearest.
1 parent 8c7578e commit b68f820

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/basic_functions.stub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function extract(array &$array, int $flags = EXTR_OVERWRITE, string $prefix = ""
121121
*/
122122
function compact($var_name, ...$var_names): array {}
123123

124-
function array_fill(int $start, int $count, mixed $value): array {}
124+
function array_fill(int $start_index, int $count, mixed $value): array {}
125125

126126
function array_fill_keys(array $keys, mixed $value): array {}
127127

0 commit comments

Comments
 (0)