1
0
Fork 0

Fixed function case declaration <> call

pull/9204/head
Simon Berger 2020-09-11 23:05:23 +02:00
parent 33d7a64df9
commit 7053b6f761
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ class Filesystem
$result = true; $result = true;
/** @var RecursiveDirectoryIterator $ri */ /** @var RecursiveDirectoryIterator $ri */
foreach ($ri as $file) { foreach ($ri as $file) {
$targetPath = $target . DIRECTORY_SEPARATOR . $ri->getSubPathName(); $targetPath = $target . DIRECTORY_SEPARATOR . $ri->getSubPathname();
if ($file->isDir()) { if ($file->isDir()) {
$this->ensureDirectoryExists($targetPath); $this->ensureDirectoryExists($targetPath);
} else { } else {