From 00586196deaa269971d56e5b0fc63a59c28d7b86 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Mon, 4 Feb 2008 15:22:59 +0000 Subject: MFH: Add missing Reflection API metadata for DOM classes. --- ext/dom/domimplementationsource.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'ext/dom/domimplementationsource.c') diff --git a/ext/dom/domimplementationsource.c b/ext/dom/domimplementationsource.c index 7ef2f6b606..c3d6d18ad0 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 @@ */ const 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} }; -- cgit v1.2.1