summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug46064_2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/bug46064_2.phpt')
-rw-r--r--ext/reflection/tests/bug46064_2.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/reflection/tests/bug46064_2.phpt b/ext/reflection/tests/bug46064_2.phpt
index 0b74708dff..6ac72bbd27 100644
--- a/ext/reflection/tests/bug46064_2.phpt
+++ b/ext/reflection/tests/bug46064_2.phpt
@@ -3,7 +3,7 @@ Bug #46064.2 (Exception when creating ReflectionProperty object on dynamicly cre
--FILE--
<?php
-class foo {
+class foo {
}
$x = new foo;
@@ -25,7 +25,7 @@ class test extends bar {
public function __construct() {
parent::__construct();
-
+
$p = new reflectionobject($this);
var_dump($h = $p->getProperty('a'));
var_dump($h->isDefault(), $h->isProtected(), $h->isPrivate(), $h->isPublic(), $h->isStatic());