Completed
Push — master ( b59f02...18a956 )
by Albin
06:44 queued 06:40
created
src/Gaufrette/Adapter/AclAwareAmazonS3.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -186,6 +186,9 @@
 block discarded – undo
186 186
         return $this->users;
187 187
     }
188 188
 
189
+    /**
190
+     * @param string $key
191
+     */
189 192
     private function updateAcl($key)
190 193
     {
191 194
         $response = $this->s3->set_object_acl($this->bucketName, $key, $this->getAcl());
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
  * @deprecated The AclAwareAmazonS3 adapter is deprecated since version 0.4 and will be removed in 1.0. Use the AwsS3 adapter instead.
20 20
  */
21 21
 class AclAwareAmazonS3 implements Adapter,
22
-                                  MetadataSupporter
22
+                                    MetadataSupporter
23 23
 {
24 24
     protected $delegate;
25 25
     protected $s3;
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
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * @deprecated The AmazonS3 adapter is deprecated since version 0.4 and will be removed in 1.0. Use the AwsS3 adapter instead.
19 19
  */
20 20
 class AmazonS3 implements Adapter,
21
-                          MetadataSupporter
21
+                            MetadataSupporter
22 22
 {
23 23
     protected $service;
24 24
     protected $bucket;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/Cache.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
  * @deprecated The Cache adapter is deprecated since version 0.4 and will be removed in 1.0.
17 17
  */
18 18
 class Cache implements Adapter,
19
-                       MetadataSupporter
19
+                        MetadataSupporter
20 20
 {
21 21
     /**
22 22
      * @var Adapter
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/Sftp.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
  * @deprecated The Sftp adapter is deprecated since version 0.4 and will be removed in 1.0.
12 12
  */
13 13
 class Sftp implements Adapter,
14
-                      ChecksumCalculator
14
+                        ChecksumCalculator
15 15
 {
16 16
     protected $sftp;
17 17
     protected $directory;
Please login to merge, or discard this patch.