summaryrefslogtreecommitdiff
path: root/ext/phar/tests/phar_oo_005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/phar/tests/phar_oo_005.phpt')
-rw-r--r--ext/phar/tests/phar_oo_005.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/phar/tests/phar_oo_005.phpt b/ext/phar/tests/phar_oo_005.phpt
index 7b414435c4..83dd3fc16b 100644
--- a/ext/phar/tests/phar_oo_005.phpt
+++ b/ext/phar/tests/phar_oo_005.phpt
@@ -17,12 +17,12 @@ $it = new RecursiveIteratorIterator($it);
foreach($it as $name => $ent)
{
- var_dump(str_replace(array('\\', $fname), array('/', '*'), $name));
- var_dump(str_replace(array('\\', $fname), array('/', '*'), $ent->getPathname()));
- var_dump(str_replace('\\', '/', $it->getSubPath()));
- var_dump(str_replace('\\', '/', $it->getSubPathName()));
- $sub = $it->getPathInfo();
- var_dump(str_replace('\\', '/', $sub->getFilename()));
+ var_dump(str_replace(array('\\', $fname), array('/', '*'), $name));
+ var_dump(str_replace(array('\\', $fname), array('/', '*'), $ent->getPathname()));
+ var_dump(str_replace('\\', '/', $it->getSubPath()));
+ var_dump(str_replace('\\', '/', $it->getSubPathName()));
+ $sub = $it->getPathInfo();
+ var_dump(str_replace('\\', '/', $sub->getFilename()));
}
?>