johannes Fri Aug 17 14:21:32 2007 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/reflection php_reflection.c Log: - MFH: Mark the parameter for ReflectionProperty::GetValue as optional http://cvs.php.net/viewvc.cgi/php-src/ext/reflection/php_reflection.c?r1=1.164.2.33.2.43&r2=1.164.2.33.2.44&diff_format=u Index: php-src/ext/reflection/php_reflection.c diff -u php-src/ext/reflection/php_reflection.c:1.164.2.33.2.43 php-src/ext/reflection/php_reflection.c:1.164.2.33.2.44 --- php-src/ext/reflection/php_reflection.c:1.164.2.33.2.43 Tue Jul 24 23:15:58 2007 +++ php-src/ext/reflection/php_reflection.c Fri Aug 17 14:21:32 2007 @@ -20,7 +20,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_reflection.c,v 1.164.2.33.2.43 2007/07/24 23:15:58 johannes Exp $ */ +/* $Id: php_reflection.c,v 1.164.2.33.2.44 2007/08/17 14:21:32 johannes Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -4699,7 +4699,7 @@ 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() @@ -4903,7 +4903,7 @@ php_info_print_table_start(); php_info_print_table_header(2, "Reflection", "enabled"); - php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.164.2.33.2.43 2007/07/24 23:15:58 johannes Exp $"); + php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.164.2.33.2.44 2007/08/17 14:21:32 johannes Exp $"); php_info_print_table_end(); } /* }}} */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php