Completed
Branch master (1e415d)
by Andrew
02:35
created
src/Gaufrette/Adapter/Local.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,10 +15,10 @@
 block discarded – undo
15 15
  * @author Leszek Prabucki <[email protected]>
16 16
  */
17 17
 class Local implements Adapter,
18
-                       StreamFactory,
19
-                       ChecksumCalculator,
20
-                       SizeCalculator,
21
-                       MimeTypeProvider
18
+                        StreamFactory,
19
+                        ChecksumCalculator,
20
+                        SizeCalculator,
21
+                        MimeTypeProvider
22 22
 {
23 23
     protected $directory;
24 24
     private $create;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
205 205
     {
206 206
         $this->ensureDirectoryExists($this->directory, $this->create);
207 207
 
208
-        return $this->normalizePath($this->directory . '/' . $key);
208
+        return $this->normalizePath($this->directory.'/'.$key);
209 209
     }
210 210
 
211 211
     /**
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/AmazonS3.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
  * @author  Leszek Prabucki <[email protected]>
16 16
  */
17 17
 class AmazonS3 implements Adapter,
18
-                          MetadataSupporter
18
+                            MetadataSupporter
19 19
 {
20 20
     protected $service;
21 21
     protected $bucket;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/AclAwareAmazonS3.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * @author Johannes M. Schmitt <[email protected]>
17 17
  */
18 18
 class AclAwareAmazonS3 implements Adapter,
19
-                                  MetadataSupporter
19
+                                    MetadataSupporter
20 20
 {
21 21
     protected $delegate;
22 22
     protected $s3;
Please login to merge, or discard this patch.