diff options
Diffstat (limited to 'ext/dom/domconfiguration.c')
-rw-r--r-- | ext/dom/domconfiguration.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/dom/domconfiguration.c b/ext/dom/domconfiguration.c index 054a84edc6..507727e909 100644 --- a/ext/dom/domconfiguration.c +++ b/ext/dom/domconfiguration.c @@ -28,18 +28,21 @@ #include "php_dom.h" /* {{{ arginfo */ +static ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_configuration_set_parameter, 0, 0, 2) ZEND_ARG_INFO(0, name) - ZEND_ARG_INFO(0, value) + ZEND_ARG_OBJ_INFO(0, value, DOMUserData, 0) ZEND_END_ARG_INFO(); +static ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_configuration_get_parameter, 0, 0, 0) ZEND_ARG_INFO(0, name) ZEND_END_ARG_INFO(); +static ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_configuration_can_set_parameter, 0, 0, 0) ZEND_ARG_INFO(0, name) - ZEND_ARG_INFO(0, value) + ZEND_ARG_OBJ_INFO(0, value, DOMUserData, 0) ZEND_END_ARG_INFO(); /* }}} */ |