mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
ReflectionFunction and ReflectionMethod extends ReflectionFunctionAbstract (bug #40223)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@232566 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
57104b6e6e
commit
81546a3487
1 changed files with 5 additions and 5 deletions
|
@ -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 @@ Class [ <internal> class Exception ] {
|
|||
<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 @@ class ReflectionObject extends ReflectionClass
|
|||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
class ReflectionMethod extends ReflectionFunction
|
||||
class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector
|
||||
{
|
||||
public __construct(mixed class, string name)
|
||||
public string __toString()
|
||||
|
|
Loading…
Reference in a new issue