summaryrefslogtreecommitdiff
path: root/Zend/tests/bug26010.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug26010.phpt')
-rw-r--r--Zend/tests/bug26010.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug26010.phpt b/Zend/tests/bug26010.phpt
index 9761700bb8..bb5789ae29 100644
--- a/Zend/tests/bug26010.phpt
+++ b/Zend/tests/bug26010.phpt
@@ -3,9 +3,9 @@ Bug #26010 (private / protected variables get exposed by get_object_vars())
--FILE--
<?php
class foo {
- private $private = 'private';
- protected $protected = 'protected';
- public $public = 'public';
+ private $private = 'private';
+ protected $protected = 'protected';
+ public $public = 'public';
}
$data = new foo();
$obj_vars = get_object_vars($data);