Skip to content

Commit 136dd53

Browse files
committed
Fix arginfo
1 parent 0874ef6 commit 136dd53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/reflection/php_reflection.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -5670,7 +5670,7 @@ static const zend_function_entry reflection_exception_functions[] = {
56705670
PHP_FE_END
56715671
};
56725672

5673-
ZEND_BEGIN_ARG_INFO(arginfo_reflection__void, 0)
5673+
ZEND_BEGIN_ARG_INF(arginfo_reflection__void, 0)
56745674
ZEND_END_ARG_INFO()
56755675

56765676

@@ -6061,7 +6061,7 @@ ZEND_END_ARG_INFO()
60616061
static const zend_function_entry reflection_zend_extension_functions[] = {
60626062
ZEND_ME(reflection, __clone, arginfo_reflection__void, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL)
60636063
ZEND_ME(reflection_zend_extension, export, arginfo_reflection_extension_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
6064-
ZEND_ME(reflection_zend_extension, __construct, arginfo_reflection_extension___construct, 0)
6064+
ZEND_ME(reflection_zend_extension, __construct, arginfo_reflection_zend_extension___construct, 0)
60656065
ZEND_ME(reflection_zend_extension, __toString, arginfo_reflection__void, 0)
60666066
ZEND_ME(reflection_zend_extension, getName, arginfo_reflection__void, 0)
60676067
ZEND_ME(reflection_zend_extension, getVersion, arginfo_reflection__void, 0)

0 commit comments

Comments
 (0)