ReflectionFunctionAbstract (bug #41571)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@241393 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2007-08-17 04:54:11 +00:00
parent cab59e22a4
commit 86e94ba32a

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.26 $ -->
<!-- $Revision: 1.27 $ -->
<sect1 xml:id="language.oop5.reflection" xmlns="http://docbook.org/ns/docbook">
<title>Reflection</title>
<sect2 xml:id="language.oop5.reflection.introduction">
@ -159,6 +159,7 @@ class ReflectionFunction extends ReflectionFunctionAbstract implements Reflector
public static string export(string name, bool return)
public string getName()
public bool isInternal()
public bool isDisabled()
public bool isUserDefined()
public string getFileName()
public int getStartLine()
@ -176,6 +177,12 @@ class ReflectionFunction extends ReflectionFunctionAbstract implements Reflector
]]>
</programlisting>
</informalexample>
<para>
Parent class <classname>ReflectionFunctionAbstract</classname> has the
same methods except <function>invoke</function>,
<function>invokeArgs</function>, <function>export</function> and
<function>isDisabled</function>.
</para>
<note>
<simpara>
<function>getNumberOfParameters</function> and
@ -558,7 +565,7 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector
public int getModifiers()
public ReflectionClass getDeclaringClass()
// Inherited from ReflectionFunction
// Inherited from ReflectionFunctionAbstract
final private __clone()
public string getName()
public bool isInternal()