summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionClass_getStaticPropertyValue_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/ReflectionClass_getStaticPropertyValue_001.phpt')
-rw-r--r--ext/reflection/tests/ReflectionClass_getStaticPropertyValue_001.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/reflection/tests/ReflectionClass_getStaticPropertyValue_001.phpt b/ext/reflection/tests/ReflectionClass_getStaticPropertyValue_001.phpt
index 8a1951062f..e4546bdb78 100644
--- a/ext/reflection/tests/ReflectionClass_getStaticPropertyValue_001.phpt
+++ b/ext/reflection/tests/ReflectionClass_getStaticPropertyValue_001.phpt
@@ -33,14 +33,14 @@ var_dump($rcB->getStaticPropertyValue("publicOverridden"));
echo "\nRetrieving non-existent values from A with no default value:\n";
try {
- var_dump($rcA->getStaticPropertyValue("protectedDoesNotExist"));
+ var_dump($rcA->getStaticPropertyValue("protectedDoesNotExist"));
echo "you should not see this";
} catch (Exception $e) {
echo $e->getMessage() . "\n";
}
try {
- var_dump($rcA->getStaticPropertyValue("privateDoesNotExist"));
+ var_dump($rcA->getStaticPropertyValue("privateDoesNotExist"));
echo "you should not see this";
} catch (Exception $e) {
echo $e->getMessage() . "\n";