diff options
author | Sebastian Bergmann <sebastian@php.net> | 2008-02-04 15:22:59 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2008-02-04 15:22:59 +0000 |
commit | 00586196deaa269971d56e5b0fc63a59c28d7b86 (patch) | |
tree | 45ea9b65992ee9b1d4271ee57a764fcd2a2bab7c /ext/dom/entityreference.c | |
parent | a9418da4fc71e65c7cb0c82896cddd813680dee4 (diff) | |
download | php-git-00586196deaa269971d56e5b0fc63a59c28d7b86.tar.gz |
MFH: Add missing Reflection API metadata for DOM classes.
Diffstat (limited to 'ext/dom/entityreference.c')
-rw-r--r-- | ext/dom/entityreference.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ext/dom/entityreference.c b/ext/dom/entityreference.c index dfd90d629f..26236cd05e 100644 --- a/ext/dom/entityreference.c +++ b/ext/dom/entityreference.c @@ -28,6 +28,13 @@ #include "php_dom.h" +/* {{{ arginfo */ +static +ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_entityreference_construct, 0, 0, 1) + ZEND_ARG_INFO(0, name) +ZEND_END_ARG_INFO(); +/* }}} */ + /* * class DOMEntityReference extends DOMNode * @@ -36,7 +43,7 @@ */ const zend_function_entry php_dom_entityreference_class_functions[] = { - PHP_ME(domentityreference, __construct, NULL, ZEND_ACC_PUBLIC) + PHP_ME(domentityreference, __construct, arginfo_dom_entityreference_construct, ZEND_ACC_PUBLIC) {NULL, NULL, NULL} }; |