From f42cd8487f9e6f73aed62dff9e6c60e776a12979 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Mon, 3 Apr 2006 15:31:21 +0000 Subject: [PATCH] Mention getClass() and other ReflectionFunction methods (bug #36916) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@210615 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/reflection.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/language/oop5/reflection.xml b/language/oop5/reflection.xml index 66ed292966..a93f4f113f 100644 --- a/language/oop5/reflection.xml +++ b/language/oop5/reflection.xml @@ -1,5 +1,5 @@ - + Reflection @@ -246,9 +246,13 @@ class ReflectionParameter implements Reflector public static string export(mixed function, mixed parameter, bool return) public string getName() public bool isPassedByReference() + public ReflectionFunction getDeclaringFunction() public ReflectionClass getDeclaringClass() + public ReflectionClass getClass() public bool isArray() public bool allowsNull() + public bool isPassedByReference() + public bool getPosition() public bool isOptional() public bool isDefaultValueAvailable() public mixed getDefaultValue() @@ -263,6 +267,8 @@ class ReflectionParameter implements Reflector isDefaultValueAvailable and isOptional were added in PHP 5.0.3, while isArray was added in PHP 5.1.0. + getDeclaringFunction and + getPosition were added in PHP 5.1.3.