summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug49719.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/bug49719.phpt')
-rw-r--r--ext/reflection/tests/bug49719.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/reflection/tests/bug49719.phpt b/ext/reflection/tests/bug49719.phpt
index 215140a45a..b27312e6cd 100644
--- a/ext/reflection/tests/bug49719.phpt
+++ b/ext/reflection/tests/bug49719.phpt
@@ -13,10 +13,10 @@ class B extends A {
try {
$b = new B;
$ref = new ReflectionClass($b);
-
+
var_dump(property_exists('b', 'a'));
var_dump(property_exists($b, 'a'));
- var_dump($ref->hasProperty('a'));
+ var_dump($ref->hasProperty('a'));
var_dump($ref->getProperty('a'));
} catch (Exception $e) {
var_dump($e->getMessage());