helly Mon Mar 6 09:47:04 2006 UTC Modified files: /php-src/ext/reflection php_reflection.c Log: - Proto fixes http://cvs.php.net/viewcvs.cgi/php-src/ext/reflection/php_reflection.c?r1=1.225&r2=1.226&diff_format=u Index: php-src/ext/reflection/php_reflection.c diff -u php-src/ext/reflection/php_reflection.c:1.225 php-src/ext/reflection/php_reflection.c:1.226 --- php-src/ext/reflection/php_reflection.c:1.225 Tue Feb 28 18:26:24 2006 +++ php-src/ext/reflection/php_reflection.c Mon Mar 6 09:47:03 2006 @@ -20,7 +20,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_reflection.c,v 1.225 2006/02/28 18:26:24 helly Exp $ */ +/* $Id: php_reflection.c,v 1.226 2006/03/06 09:47:03 helly Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -1338,7 +1338,7 @@ } /* }}} */ -/* {{{ proto public ReflectionFunction::__construct(string name) +/* {{{ proto public void ReflectionFunction::__construct(string name) Constructor. Throws an Exception in case the given function does not exist */ ZEND_METHOD(reflection_function, __construct) { @@ -1755,7 +1755,7 @@ } /* }}} */ -/* {{{ proto public ReflectionParameter::__construct(mixed function, mixed parameter) +/* {{{ proto public void ReflectionParameter::__construct(mixed function, mixed parameter) Constructor. Throws an Exception in case the given method does not exist */ ZEND_METHOD(reflection_parameter, __construct) { @@ -2059,7 +2059,7 @@ } /* }}} */ -/* {{{ proto public ReflectionMethod::__construct(mixed class_or_method [, string name]) +/* {{{ proto public void ReflectionMethod::__construct(mixed class_or_method [, string name]) Constructor. Throws an Exception in case the given method does not exist */ ZEND_METHOD(reflection_method, __construct) { @@ -2570,7 +2570,7 @@ } /* }}} */ -/* {{{ proto public ReflectionClass::__construct(mixed argument) throws ReflectionException +/* {{{ proto public void ReflectionClass::__construct(mixed argument) throws ReflectionException Constructor. Takes a string or an instance as an argument */ ZEND_METHOD(reflection_class, __construct) { @@ -3572,7 +3572,7 @@ } /* }}} */ -/* {{{ proto public ReflectionObject::__construct(mixed argument) throws ReflectionException +/* {{{ proto public void ReflectionObject::__construct(mixed argument) throws ReflectionException Constructor. Takes an instance as an argument */ ZEND_METHOD(reflection_object, __construct) { @@ -3588,7 +3588,7 @@ } /* }}} */ -/* {{{ proto public ReflectionProperty::__construct(mixed class, string name) +/* {{{ proto public void ReflectionProperty::__construct(mixed class, string name) Constructor. Throws an Exception in case the given property does not exist */ ZEND_METHOD(reflection_property, __construct) { @@ -3941,7 +3941,7 @@ } /* }}} */ -/* {{{ proto public ReflectionExtension::__construct(string name) +/* {{{ proto public void ReflectionExtension::__construct(string name) Constructor. Throws an Exception in case the given extension does not exist */ ZEND_METHOD(reflection_extension, __construct) { @@ -4501,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.225 2006/02/28 18:26:24 helly Exp $"); + php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.226 2006/03/06 09:47:03 helly Exp $"); php_info_print_table_end(); } /* }}} */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php