Get rid of empty function entries

Closes GH-5917
This commit is contained in:
Máté Kocsis 2020-08-01 09:42:04 +02:00
parent d92229d8c7
commit ec22e5aa38
No known key found for this signature in database
GPG key ID: FD055E41728BF310
10 changed files with 10 additions and 71 deletions

View file

@ -6381,10 +6381,6 @@ ZEND_METHOD(ReflectionAttribute, newInstance)
RETURN_COPY_VALUE(&obj);
}
/* }}} */
static const zend_function_entry reflection_ext_functions[] = { /* {{{ */
PHP_FE_END
}; /* }}} */
/* {{{ _reflection_write_property */
static zval *_reflection_write_property(zend_object *object, zend_string *name, zval *value, void **cache_slot)
@ -6558,7 +6554,7 @@ PHP_MINFO_FUNCTION(reflection) /* {{{ */
zend_module_entry reflection_module_entry = { /* {{{ */
STANDARD_MODULE_HEADER,
"Reflection",
reflection_ext_functions,
NULL,
PHP_MINIT(reflection),
NULL,
NULL,