summaryrefslogtreecommitdiff
path: root/php/src/php5/Config.h
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2020-12-03 12:44:47 -0500
committerJoe George <joe@zeroc.com>2020-12-03 12:44:47 -0500
commita37d87d2baff559d5e5abcc5a3e3e2d67c343943 (patch)
treec424d3820e533437fd1dc8f53c5b6580655fb080 /php/src/php5/Config.h
parentAdd support for PHP 8 (Fixes #1172) (#1177) (diff)
downloadice-a37d87d2baff559d5e5abcc5a3e3e2d67c343943.tar.bz2
ice-a37d87d2baff559d5e5abcc5a3e3e2d67c343943.tar.xz
ice-a37d87d2baff559d5e5abcc5a3e3e2d67c343943.zip
Add missing ice_void_arginfo to php5
Diffstat (limited to 'php/src/php5/Config.h')
-rw-r--r--php/src/php5/Config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/php/src/php5/Config.h b/php/src/php5/Config.h
index 302b642c160..e18cfdc8e81 100644
--- a/php/src/php5/Config.h
+++ b/php/src/php5/Config.h
@@ -125,6 +125,10 @@ ZEND_BEGIN_MODULE_GLOBALS(ice)
zval* unset;
ZEND_END_MODULE_GLOBALS(ice)
+// A void arginfo used for methods which do not take parameters.
+ZEND_BEGIN_ARG_INFO(ice_void_arginfo, 0)
+ZEND_END_ARG_INFO()
+
#ifdef ZTS
# define ICE_G(v) TSRMG(ice_globals_id, zend_ice_globals*, v)
#else