From 4c5ee78104a91ca3cc132368037b837d7dc54ab1 Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Thu, 17 Feb 2005 18:01:53 +0000 Subject: [PATCH] new ReflectionClass methods git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@179967 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/reflection.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/language/oop5/reflection.xml b/language/oop5/reflection.xml index 94f70e16f6..79743f5178 100644 --- a/language/oop5/reflection.xml +++ b/language/oop5/reflection.xml @@ -1,5 +1,5 @@ - + Reflection @@ -316,7 +316,9 @@ class ReflectionClass implements Reflector public bool isInternal() public bool isUserDefined() public bool isInstantiable() + public bool hasConstant(string name) public bool hasMethod(string name) + public bool hasProperty(string name) public string getFileName() public int getStartLine() public int getEndLine() @@ -350,7 +352,8 @@ class ReflectionClass implements Reflector - hasMethod was added in PHP 5.1.0. + hasConstant, hasMethod, + hasProperty were added in PHP 5.1.0.