summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Manager/ScormDisk.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Manager/ScormDisk.php b/src/Manager/ScormDisk.php
index d4a6120..99988af 100644
--- a/src/Manager/ScormDisk.php
+++ b/src/Manager/ScormDisk.php
@@ -30,7 +30,7 @@ class ScormDisk
$zipEntryName = $unzipper->getNameIndex($i);
$destination = $this->join($target_dir, $this->cleanPath($zipEntryName));
if ($this->isDirectory($zipEntryName)) {
- $disk->createDir($destination);
+ $disk->createDirectory($destination);
continue;
}
$disk->writeStream($destination, $unzipper->getStream($zipEntryName));