From cc0b2dd120f4211e2a120614c7c5155851dbaa86 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Mon, 4 Feb 2008 15:23:11 +0000 Subject: MFH: Add missing Reflection API metadata for DOM classes. --- ext/dom/processinginstruction.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'ext/dom/processinginstruction.c') diff --git a/ext/dom/processinginstruction.c b/ext/dom/processinginstruction.c index 94d7bc0c7f..bcb860ee19 100644 --- a/ext/dom/processinginstruction.c +++ b/ext/dom/processinginstruction.c @@ -28,6 +28,14 @@ #include "php_dom.h" +/* {{{ arginfo */ +static +ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_processinginstruction_construct, 0, 0, 1) + ZEND_ARG_INFO(0, name) + ZEND_ARG_INFO(0, value) +ZEND_END_ARG_INFO(); +/* }}} */ + /* * class DOMProcessingInstruction extends DOMNode * @@ -36,7 +44,7 @@ */ zend_function_entry php_dom_processinginstruction_class_functions[] = { - PHP_ME(domprocessinginstruction, __construct, NULL, ZEND_ACC_PUBLIC) + PHP_ME(domprocessinginstruction, __construct, arginfo_dom_processinginstruction_construct, ZEND_ACC_PUBLIC) {NULL, NULL, NULL} }; -- cgit v1.2.1