From 18239fb08c1b35af0da9984cfd69484a4dd1033f Mon Sep 17 00:00:00 2001 From: Frank de Jonge Date: Sat, 22 Mar 2014 00:22:24 +0100 Subject: [PATCH] Coding style change, blank line before return. --- src/Adapter/AwsS3.php | 1 + 1 file changed, 1 insertion(+) 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'); }