summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Zend/zend_builtin_functions.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c
index 1cff9020fc..55e183a929 100644
--- a/Zend/zend_builtin_functions.c
+++ b/Zend/zend_builtin_functions.c
@@ -1082,7 +1082,8 @@ ZEND_FUNCTION(zend_test_func)
}
#endif
-
+/* {{{ proto string get_resource_type(resource res)
+ Get the resource type name for a given resource */
ZEND_FUNCTION(get_resource_type)
{
char *resource_type;
@@ -1104,6 +1105,7 @@ ZEND_FUNCTION(get_resource_type)
RETURN_STRING("Unknown", 1);
}
}
+/* }}} */
static int add_extension_info(zend_module_entry *module, void *arg TSRMLS_DC)