From 81546a3487283a1f222af59957c0c6da560b7993 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sun, 25 Mar 2007 10:39:10 +0000 Subject: [PATCH] ReflectionFunction and ReflectionMethod extends ReflectionFunctionAbstract (bug #40223) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@232566 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/reflection.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/language/oop5/reflection.xml b/language/oop5/reflection.xml index a93f4f113f..6b4c5aa808 100644 --- a/language/oop5/reflection.xml +++ b/language/oop5/reflection.xml @@ -1,5 +1,5 @@ - + Reflection @@ -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 [ class Exception ] {