Skip to content

Commit 9deac57

Browse files
committed
rename test cases and rewind array_column changes
1 parent 502787c commit 9deac57

File tree

5 files changed

+1
-4
lines changed

5 files changed

+1
-4
lines changed

ext/standard/array.c

+1-4
Original file line numberDiff line numberDiff line change
@@ -4285,15 +4285,12 @@ PHP_FUNCTION(array_column)
42854285
zend_string *index_str = NULL;
42864286
zend_long index_long;
42874287
bool index_is_null = 1;
4288-
bool group_bool = 0;
4289-
bool group_is_null = 1;
42904288

4291-
ZEND_PARSE_PARAMETERS_START(2, 4)
4289+
ZEND_PARSE_PARAMETERS_START(2, 3)
42924290
Z_PARAM_ARRAY_HT(input)
42934291
Z_PARAM_STR_OR_LONG_OR_NULL(column_str, column_long, column_is_null)
42944292
Z_PARAM_OPTIONAL
42954293
Z_PARAM_STR_OR_LONG_OR_NULL(index_str, index_long, index_is_null)
4296-
Z_PARAM_BOOL_OR_NULL(group_bool, group_is_null)
42974294
ZEND_PARSE_PARAMETERS_END();
42984295

42994296
void* cache_slot_column[3] = { NULL, NULL, NULL };

0 commit comments

Comments
 (0)