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~249 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=004a72ce1a989f9dd3211ae2faa31087b44d9673;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 d7cdb21eb8..d1f90e3455 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -5285,7 +5285,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()