]> granicus.if.org Git - php/commitdiff
Fix arginfo
authorJohannes Schlüter <johannes@php.net>
Sat, 4 Oct 2014 17:59:21 +0000 (19:59 +0200)
committerJohannes Schlüter <johannes@php.net>
Sat, 4 Oct 2014 17:59:21 +0000 (19:59 +0200)
ext/reflection/php_reflection.c

index 4294ceac810976c9475c20ece8986c7aa2fc41b9..5040de5e1987ae614b2e8fbfcd9c6cdc1e57ce68 100644 (file)
@@ -5670,7 +5670,7 @@ static const zend_function_entry reflection_exception_functions[] = {
        PHP_FE_END
 };
 
-ZEND_BEGIN_ARG_INFO(arginfo_reflection__void, 0)
+ZEND_BEGIN_ARG_INF(arginfo_reflection__void, 0)
 ZEND_END_ARG_INFO()
 
 
@@ -6061,7 +6061,7 @@ ZEND_END_ARG_INFO()
 static const zend_function_entry reflection_zend_extension_functions[] = {
        ZEND_ME(reflection, __clone, arginfo_reflection__void, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL)
        ZEND_ME(reflection_zend_extension, export, arginfo_reflection_extension_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
-       ZEND_ME(reflection_zend_extension, __construct, arginfo_reflection_extension___construct, 0)
+       ZEND_ME(reflection_zend_extension, __construct, arginfo_reflection_zend_extension___construct, 0)
        ZEND_ME(reflection_zend_extension, __toString, arginfo_reflection__void, 0)
        ZEND_ME(reflection_zend_extension, getName, arginfo_reflection__void, 0)
        ZEND_ME(reflection_zend_extension, getVersion, arginfo_reflection__void, 0)