diff --git a/language/oop5/reflection.xml b/language/oop5/reflection.xml index 163f13cf8c..9ca698b541 100644 --- a/language/oop5/reflection.xml +++ b/language/oop5/reflection.xml @@ -1,5 +1,5 @@ - + Reflection @@ -344,6 +344,8 @@ class ReflectionClass implements Reflector public ReflectionClass getParentClass() public bool isSubclassOf(ReflectionClass class) public array getStaticProperties() + public mixed getStaticPropertyValue(string name [, mixed default]) + public void setStaticPropertyValue(string name, mixed value) public array getDefaultProperties() public bool isIterateable() public bool implementsInterface(string name) @@ -357,7 +359,8 @@ class ReflectionClass implements Reflector hasConstant, hasMethod, - hasProperty were added in PHP 5.1.0. + hasProperty, getStaticPropertyValue + and setStaticPropertyValue were added in PHP 5.1.0.