mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
MFH: Add missing Reflection API metadata for DOM classes.
This commit is contained in:
parent
a9418da4fc
commit
00586196de
20 changed files with 634 additions and 94 deletions
|
@ -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}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue