helly           Mon Mar  6 09:48:15 2006 UTC

  Modified files:              (Branch: PHP_5_1)
    /php-src/ext/reflection     php_reflection.c 
  Log:
  - MFH Proto fixes
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/reflection/php_reflection.c?r1=1.164.2.29&r2=1.164.2.30&diff_format=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.164.2.29 
php-src/ext/reflection/php_reflection.c:1.164.2.30
--- php-src/ext/reflection/php_reflection.c:1.164.2.29  Tue Feb 28 02:22:32 2006
+++ php-src/ext/reflection/php_reflection.c     Mon Mar  6 09:48:14 2006
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_reflection.c,v 1.164.2.29 2006/02/28 02:22:32 helly Exp $ */
+/* $Id: php_reflection.c,v 1.164.2.30 2006/03/06 09:48:14 helly Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -1327,7 +1327,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)
 {
@@ -1746,7 +1746,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)
 {
@@ -2050,7 +2050,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)
 {
@@ -2550,7 +2550,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)
 {
@@ -3539,7 +3539,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)
 {
@@ -3555,7 +3555,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)
 {
@@ -3874,7 +3874,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)
 {
@@ -4432,7 +4432,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.29 2006/02/28 02:22:32 helly Exp $");
+       php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 
1.164.2.30 2006/03/06 09:48:14 helly Exp $");
 
        php_info_print_table_end();
 } /* }}} */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to