summaryrefslogtreecommitdiff
path: root/sapi/aolserver
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2008-07-16 11:59:15 +0000
committerFelipe Pena <felipe@php.net>2008-07-16 11:59:15 +0000
commit67185d6098bed94da91f03a835ebc16baee5a321 (patch)
tree63961d8ed347abf4e89ec421f8956a0ae7484179 /sapi/aolserver
parent8d14c2b1829350f1f9fd6f0bdc9609d4c5dc42d9 (diff)
downloadphp-git-67185d6098bed94da91f03a835ebc16baee5a321.tar.gz
- Added arginfo
Diffstat (limited to 'sapi/aolserver')
-rw-r--r--sapi/aolserver/aolserver.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sapi/aolserver/aolserver.c b/sapi/aolserver/aolserver.c
index 1cc5a5b87e..0cba81bcbc 100644
--- a/sapi/aolserver/aolserver.c
+++ b/sapi/aolserver/aolserver.c
@@ -240,8 +240,14 @@ static void php_info_aolserver(ZEND_MODULE_INFO_FUNC_ARGS)
PHP_FUNCTION(getallheaders);
+/* {{{ arginfo */
+static
+ZEND_BEGIN_ARG_INFO(arginfo_aolserver_getallheaders, 0)
+ZEND_END_ARG_INFO()
+/* }}} */
+
const static zend_function_entry aolserver_functions[] = {
- PHP_FE(getallheaders, NULL)
+ PHP_FE(getallheaders, arginfo_aolserver_getallheaders)
{NULL, NULL, NULL}
};