From: Johannes Schlüter Date: Fri, 17 Aug 2007 14:21:32 +0000 (+0000) Subject: - MFH: Mark the parameter for ReflectionProperty::GetValue as optional X-Git-Tag: php-5.2.4RC3~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d48a1081c0b31f64c3ab72625b32a41fc5bacb1;p=php - MFH: Mark the parameter for ReflectionProperty::GetValue as optional --- diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 916a0a3188..59b0ce4b71 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -4699,7 +4699,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_reflection_property___construct, 0) ZEND_END_ARG_INFO() static -ZEND_BEGIN_ARG_INFO(arginfo_reflection_property_getValue, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_property_getValue, 0, 0, 0) ZEND_ARG_INFO(0, object) ZEND_END_ARG_INFO()