diff --git a/src/Adapter/AwsS3.php b/src/Adapter/AwsS3.php index 9018a5419..27b041e02 100644 --- a/src/Adapter/AwsS3.php +++ b/src/Adapter/AwsS3.php @@ -247,6 +247,7 @@ public function deleteDir($path) public function createDir($path) { $result = $this->write(rtrim($path, '/') . '/', ''); + return array('path' => $path, 'type' => 'dir'); }