summaryrefslogtreecommitdiff
path: root/ext/spl/tests/iterator_055.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/iterator_055.phpt')
-rw-r--r--ext/spl/tests/iterator_055.phpt16
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/spl/tests/iterator_055.phpt b/ext/spl/tests/iterator_055.phpt
index 1ae21a6611..58d710c04a 100644
--- a/ext/spl/tests/iterator_055.phpt
+++ b/ext/spl/tests/iterator_055.phpt
@@ -5,14 +5,14 @@ SPL: RegexIterator::SPLIT, USE_KEY
class MyRegexIterator extends RegexIterator
{
- function show()
- {
- foreach($this as $k => $v)
- {
- var_dump($k);
- var_dump($v);
- }
- }
+ function show()
+ {
+ foreach($this as $k => $v)
+ {
+ var_dump($k);
+ var_dump($v);
+ }
+ }
}
$ar = new ArrayIterator(array('1'=>0,'1,2'=>1,'1,2,3'=>2,0=>3,'FooBar'=>4,','=>5,',,'=>6));