gwynne Sun Jun 17 09:28:51 2007 UTC
Modified files:
/phpdoc/en/language/oop5 reflection.xml
Log:
Change __construct() return type to void (fixes bug #41570)
http://cvs.php.net/viewvc.cgi/phpdoc/en/language/oop5/reflection.xml?r1=1.22&r2=1.23&diff_format=u
Index: phpdoc/en/language/oop5/reflection.xml
diff -u phpdoc/en/language/oop5/reflection.xml:1.22
phpdoc/en/language/oop5/reflection.xml:1.23
--- phpdoc/en/language/oop5/reflection.xml:1.22 Tue May 29 08:24:46 2007
+++ phpdoc/en/language/oop5/reflection.xml Sun Jun 17 09:28:51 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.22 $ -->
+<!-- $Revision: 1.23 $ -->
<sect1 id="language.oop5.reflection">
<title>Reflection</title>
<sect2 id="language.oop5.reflection.introduction">
@@ -133,7 +133,7 @@
class ReflectionFunction extends ReflectionFunctionAbstract implements
Reflector
{
final private __clone()
- public object __construct(string name)
+ public void __construct(string name)
public string __toString()
public static string export(string name, bool return)
public string getName()
@@ -241,7 +241,7 @@
class ReflectionParameter implements Reflector
{
final private __clone()
- public object __construct(string function, string parameter)
+ public void __construct(string function, string parameter)
public string __toString()
public static string export(mixed function, mixed parameter, bool return)
public string getName()
@@ -328,7 +328,7 @@
class ReflectionClass implements Reflector
{
final private __clone()
- public object __construct(string name)
+ public void __construct(string name)
public string __toString()
public static string export(mixed class, bool return)
public string getName()
@@ -499,7 +499,7 @@
class ReflectionObject extends ReflectionClass
{
final private __clone()
- public object __construct(mixed object)
+ public void __construct(mixed object)
public string __toString()
public static string export(mixed object, bool return)
}
@@ -521,7 +521,7 @@
<?php
class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector
{
- public __construct(mixed class, string name)
+ public void __construct(mixed class, string name)
public string __toString()
public static string export(mixed class, string name, bool return)
public mixed invoke(stdclass object, mixed args)
@@ -653,7 +653,7 @@
class ReflectionProperty implements Reflector
{
final private __clone()
- public __construct(mixed class, string name)
+ public void __construct(mixed class, string name)
public string __toString()
public static string export(mixed class, string name, bool return)
public string getName()
@@ -747,7 +747,7 @@
<?php
class ReflectionExtension implements Reflector {
final private __clone()
- public __construct(string name)
+ public void __construct(string name)
public string __toString()
public static string export(string name, bool return)
public string getName()