summaryrefslogtreecommitdiff
path: root/ext/skeleton/skeleton_arginfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/skeleton/skeleton_arginfo.h')
-rw-r--r--ext/skeleton/skeleton_arginfo.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/ext/skeleton/skeleton_arginfo.h b/ext/skeleton/skeleton_arginfo.h
new file mode 100644
index 0000000000..9157c66bfd
--- /dev/null
+++ b/ext/skeleton/skeleton_arginfo.h
@@ -0,0 +1,20 @@
+/* This is a generated file, edit the .stub.php file instead.
+ * Stub hash: 7eb3fd4083c98e6dffc8b02b6373b7ce9cbf228d */
+
+ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_test1, 0, 0, IS_VOID, 0)
+ZEND_END_ARG_INFO()
+
+ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_test2, 0, 0, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, str, IS_STRING, 0, "\"\"")
+ZEND_END_ARG_INFO()
+
+
+ZEND_FUNCTION(test1);
+ZEND_FUNCTION(test2);
+
+
+static const zend_function_entry ext_functions[] = {
+ ZEND_FE(test1, arginfo_test1)
+ ZEND_FE(test2, arginfo_test2)
+ ZEND_FE_END
+};