From: Hannes Magnusson Date: Tue, 2 Mar 2010 22:16:24 +0000 (+0000) Subject: - The ctor requires both arguments X-Git-Tag: php-5.4.0alpha1~191^2~1914 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f6f5e5417447520bb2404449d8e47a9d34aee55b;p=php - The ctor requires both arguments - Sync/fix ctor and export arguments to 5_2 --- diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 10c0cc54fe..77728b3936 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -5531,7 +5531,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_property_export, 0, 0, 2) ZEND_ARG_INFO(0, return) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_property___construct, 0, 0, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_property___construct, 0, 0, 2) ZEND_ARG_INFO(0, class) ZEND_ARG_INFO(0, name) ZEND_END_ARG_INFO()