summaryrefslogtreecommitdiff
path: root/ext/dom/domimplementationsource.c
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2008-02-04 15:23:11 +0000
committerSebastian Bergmann <sebastian@php.net>2008-02-04 15:23:11 +0000
commitcc0b2dd120f4211e2a120614c7c5155851dbaa86 (patch)
tree0509e824c2da19ec907632b8cac1f7eeedd308ec /ext/dom/domimplementationsource.c
parent622504d7a306ec09f9f922a152c962625fed07dc (diff)
downloadphp-git-cc0b2dd120f4211e2a120614c7c5155851dbaa86.tar.gz
MFH: Add missing Reflection API metadata for DOM classes.
Diffstat (limited to 'ext/dom/domimplementationsource.c')
-rw-r--r--ext/dom/domimplementationsource.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/ext/dom/domimplementationsource.c b/ext/dom/domimplementationsource.c
index 6d38a3afbb..f476350d3e 100644
--- a/ext/dom/domimplementationsource.c
+++ b/ext/dom/domimplementationsource.c
@@ -28,6 +28,18 @@
#include "php_dom.h"
+/* {{{ arginfo */
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_implementationsource_getdomimplementation, 0, 0, 1)
+ ZEND_ARG_INFO(0, features)
+ZEND_END_ARG_INFO();
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_implementationsource_getdomimplementations, 0, 0, 1)
+ ZEND_ARG_INFO(0, features)
+ZEND_END_ARG_INFO();
+/* }}} */
+
/*
* class domimplementationsource
*
@@ -36,8 +48,8 @@
*/
zend_function_entry php_dom_domimplementationsource_class_functions[] = {
- PHP_FALIAS(getDomimplementation, dom_domimplementationsource_get_domimplementation, NULL)
- PHP_FALIAS(getDomimplementations, dom_domimplementationsource_get_domimplementations, NULL)
+ PHP_FALIAS(getDomimplementation, dom_domimplementationsource_get_domimplementation, arginfo_dom_implementationsource_getdomimplementation)
+ PHP_FALIAS(getDomimplementations, dom_domimplementationsource_get_domimplementations, arginfo_dom_implementationsource_getdomimplementations)
{NULL, NULL, NULL}
};