summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug45614.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/bug45614.phpt')
-rw-r--r--ext/spl/tests/bug45614.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/spl/tests/bug45614.phpt b/ext/spl/tests/bug45614.phpt
index d9e9207d28..8c688555d3 100644
--- a/ext/spl/tests/bug45614.phpt
+++ b/ext/spl/tests/bug45614.phpt
@@ -3,12 +3,12 @@ SPL: Bug#45614 (ArrayIterator can show 1st private prop of wrapped object)
--FILE--
<?php
class C {
- private $priv1 = 'secret1';
- private $priv2 = 'secret2';
- public $pub1 = 'public1';
- public $pub2 = 'public2';
- public $pub3 = 'public3';
- public $pub4 = 'public4';
+ private $priv1 = 'secret1';
+ private $priv2 = 'secret2';
+ public $pub1 = 'public1';
+ public $pub2 = 'public2';
+ public $pub3 = 'public3';
+ public $pub4 = 'public4';
}
function showFirstTwoItems($it) {