Skip to content

Commit d87753f

Browse files
authored
Merge pull request #26 from devianl2/4.x
Changed from createDir tocreateDirectory due to flySystem update
2 parents b02bc7c + 15b98be commit d87753f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Manager/ScormDisk.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function unzipper($file, $target_dir)
3030
$zipEntryName = $unzipper->getNameIndex($i);
3131
$destination = $this->join($target_dir, $this->cleanPath($zipEntryName));
3232
if ($this->isDirectory($zipEntryName)) {
33-
$disk->createDir($destination);
33+
$disk->createDirectory($destination);
3434
continue;
3535
}
3636
$disk->writeStream($destination, $unzipper->getStream($zipEntryName));

0 commit comments

Comments
 (0)