vrana Sun Mar 25 10:39:10 2007 UTC
Modified files:
/phpdoc/en/language/oop5 reflection.xml
Log:
ReflectionFunction and ReflectionMethod extends ReflectionFunctionAbstract
(bug #40223)
http://cvs.php.net/viewvc.cgi/phpdoc/en/language/oop5/reflection.xml?r1=1.19&r2=1.20&diff_format=u
Index: phpdoc/en/language/oop5/reflection.xml
diff -u phpdoc/en/language/oop5/reflection.xml:1.19
phpdoc/en/language/oop5/reflection.xml:1.20
--- phpdoc/en/language/oop5/reflection.xml:1.19 Mon Apr 3 15:31:21 2006
+++ phpdoc/en/language/oop5/reflection.xml Sun Mar 25 10:39:10 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.19 $ -->
+<!-- $Revision: 1.20 $ -->
<sect1 id="language.oop5.reflection">
<title>Reflection</title>
<sect2 id="language.oop5.reflection.introduction">
@@ -21,9 +21,9 @@
class Reflection { }
interface Reflector { }
class ReflectionException extends Exception { }
-class ReflectionFunction implements Reflector { }
+class ReflectionFunction extends ReflectionFunctionAbstract implements
Reflector { }
class ReflectionParameter implements Reflector { }
-class ReflectionMethod extends ReflectionFunction { }
+class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector
{ }
class ReflectionClass implements Reflector { }
class ReflectionObject extends ReflectionClass { }
class ReflectionProperty implements Reflector { }
@@ -130,7 +130,7 @@
<programlisting role="php">
<![CDATA[
<?php
-class ReflectionFunction implements Reflector
+class ReflectionFunction extends ReflectionFunctionAbstract implements
Reflector
{
final private __clone()
public object __construct(string name)
@@ -519,7 +519,7 @@
<programlisting role="php">
<![CDATA[
<?php
-class ReflectionMethod extends ReflectionFunction
+class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector
{
public __construct(mixed class, string name)
public string __toString()