helly Tue Feb 28 18:26:24 2006 UTC Added files: /php-src/ext/reflection TODO
Modified files: /php-src/ext/reflection php_reflection.c Log: - Make Derick happy for the moment http://cvs.php.net/viewcvs.cgi/php-src/ext/reflection/php_reflection.c?r1=1.224&r2=1.225&diff_format=u Index: php-src/ext/reflection/php_reflection.c diff -u php-src/ext/reflection/php_reflection.c:1.224 php-src/ext/reflection/php_reflection.c:1.225 --- php-src/ext/reflection/php_reflection.c:1.224 Sat Feb 25 18:05:16 2006 +++ php-src/ext/reflection/php_reflection.c Tue Feb 28 18:26:24 2006 @@ -20,7 +20,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_reflection.c,v 1.224 2006/02/25 18:05:16 helly Exp $ */ +/* $Id: php_reflection.c,v 1.225 2006/02/28 18:26:24 helly Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -4365,6 +4365,7 @@ ZEND_ME(reflection_parameter, getName, NULL, 0) ZEND_ME(reflection_parameter, isPassedByReference, NULL, 0) ZEND_ME(reflection_parameter, getDeclaringClass, NULL, 0) + ZEND_MALIAS(reflection_parameter, getClass, getDeclaringClass, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_DEPRECATED) ZEND_ME(reflection_parameter, isArray, NULL, 0) ZEND_ME(reflection_parameter, allowsNull, NULL, 0) ZEND_ME(reflection_parameter, isOptional, NULL, 0) @@ -4500,7 +4501,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.224 2006/02/25 18:05:16 helly Exp $"); + php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.225 2006/02/28 18:26:24 helly Exp $"); php_info_print_table_end(); } /* }}} */ -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php