summaryrefslogtreecommitdiff
path: root/ext/spl/tests/DirectoryIterator_by_reference.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/DirectoryIterator_by_reference.phpt')
-rw-r--r--ext/spl/tests/DirectoryIterator_by_reference.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/tests/DirectoryIterator_by_reference.phpt b/ext/spl/tests/DirectoryIterator_by_reference.phpt
index 06127ec37b..ffe7cd7b9e 100644
--- a/ext/spl/tests/DirectoryIterator_by_reference.phpt
+++ b/ext/spl/tests/DirectoryIterator_by_reference.phpt
@@ -5,7 +5,7 @@ Havard Eide <nucleuz@gmail.com>
#PHPTestFest2009 Norway 2009-06-09 \o/
--FILE--
<?php
-$it = new DirectoryIterator(__DIR__);
+$it = new DirectoryIterator(__DIR__);
foreach( $it as &$file ) {
echo $file . "\n";
}