summaryrefslogtreecommitdiff
path: root/ext/standard/array.c
diff options
context:
space:
mode:
authorTheodore Brown <theodorejb@outlook.com>2019-08-26 12:52:27 +0200
committerNikita Popov <nikita.ppv@gmail.com>2019-08-26 12:53:00 +0200
commitd5f42d68c89497834649fce36d9dd65fb6598c35 (patch)
tree6f99b6d2d528dc09cb284684f3db9043cd1fda5e /ext/standard/array.c
parent48040cf3459327a137c78a5bd76dbee3221948f3 (diff)
downloadphp-git-d5f42d68c89497834649fce36d9dd65fb6598c35.tar.gz
Convert remaining array function arginfo to PHP stubs
Diffstat (limited to 'ext/standard/array.c')
-rw-r--r--ext/standard/array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c
index c4e999d449..e1b9a78e38 100644
--- a/ext/standard/array.c
+++ b/ext/standard/array.c
@@ -4176,7 +4176,7 @@ static inline zval *array_column_fetch_prop(zval *data, zval *name, zval *rv) /*
}
/* }}} */
-/* {{{ proto array|false array_column(array input, mixed column_key[, mixed index_key])
+/* {{{ proto array array_column(array input, mixed column_key[, mixed index_key])
Return the values from a single column in the input array, identified by the
value_key and optionally indexed by the index_key */
PHP_FUNCTION(array_column)
@@ -6334,7 +6334,7 @@ PHP_FUNCTION(array_key_exists)
}
/* }}} */
-/* {{{ proto array|null array_chunk(array input, int size [, bool preserve_keys])
+/* {{{ proto array array_chunk(array input, int size [, bool preserve_keys])
Split array into chunks */
PHP_FUNCTION(array_chunk)
{