Completed
Pull Request — master (#421)
by Vincent
02:53
created
src/Gaufrette/Adapter/AwsS3.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@
 block discarded – undo
238 238
         $files = array();
239 239
         $iter = $this->service->getIterator('ListObjects', $options);
240 240
         foreach ($iter as $file) {
241
-            $item= [];
241
+            $item = [];
242 242
             $item["key"] = $this->computeKey($file['Key']);
243 243
             if (isset($file["LastModified"])) {
244 244
                 $item["mtime"] = $file["LastModified"];
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
  * @author  Michael Dowling <[email protected]>
14 14
  */
15 15
 class AwsS3 implements Adapter,
16
-                       MetadataSupporter,
17
-                       ListKeysAware,
18
-                       ListFilesAware,
19
-                       SizeCalculator
16
+                        MetadataSupporter,
17
+                        ListKeysAware,
18
+                        ListFilesAware,
19
+                        SizeCalculator
20 20
 {
21 21
     protected $service;
22 22
     protected $bucket;
Please login to merge, or discard this patch.