Completed
Pull Request — master (#617)
by Nicolas
06:28 queued 03:35
created
src/Gaufrette/Adapter/DoctrineDbal.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
  */
16 16
 class DoctrineDbal implements
17 17
     Adapter,
18
-                              ChecksumCalculator,
19
-                              ListKeysAware
18
+                                ChecksumCalculator,
19
+                                ListKeysAware
20 20
 {
21 21
     protected $connection;
22 22
     protected $table;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/InMemory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
  */
15 15
 class InMemory implements
16 16
     Adapter,
17
-                          MimeTypeProvider
17
+                            MimeTypeProvider
18 18
 {
19 19
     protected $files = [];
20 20
 
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/PhpseclibSftp.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 
10 10
 class PhpseclibSftp implements
11 11
     Adapter,
12
-                               FileFactory,
13
-                               ListKeysAware
12
+                                FileFactory,
13
+                                ListKeysAware
14 14
 {
15 15
     protected $sftp;
16 16
     protected $directory;
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
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
  */
21 21
 class AclAwareAmazonS3 implements
22 22
     Adapter,
23
-                                  MetadataSupporter
23
+                                    MetadataSupporter
24 24
 {
25 25
     protected $delegate;
26 26
     protected $s3;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/AzureBlobStorage.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
22 22
  */
23 23
 class AzureBlobStorage implements
24 24
     Adapter,
25
-                                  MetadataSupporter,
26
-                                  SizeCalculator,
27
-                                  ChecksumCalculator
25
+                                    MetadataSupporter,
26
+                                    SizeCalculator,
27
+                                    ChecksumCalculator
28 28
 {
29 29
     /**
30 30
      * Error constants.
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
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
  */
18 18
 class Cache implements
19 19
     Adapter,
20
-                       MetadataSupporter
20
+                        MetadataSupporter
21 21
 {
22 22
     /**
23 23
      * @var Adapter
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/AwsS3.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
  */
14 14
 class AwsS3 implements
15 15
     Adapter,
16
-                       MetadataSupporter,
17
-                       ListKeysAware,
18
-                       SizeCalculator,
19
-                       MimeTypeProvider
16
+                        MetadataSupporter,
17
+                        ListKeysAware,
18
+                        SizeCalculator,
19
+                        MimeTypeProvider
20 20
 {
21 21
     /** @var S3Client */
22 22
     protected $service;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/Ftp.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@  discard block
 block discarded – undo
13 13
  */
14 14
 class Ftp implements
15 15
     Adapter,
16
-                     FileFactory,
17
-                     ListKeysAware,
18
-                     SizeCalculator
16
+                        FileFactory,
17
+                        ListKeysAware,
18
+                        SizeCalculator
19 19
 {
20 20
     protected $connection = null;
21 21
     protected $directory;
@@ -264,8 +264,8 @@  discard block
 block discarded – undo
264 264
         $this->fileData = array_merge($fileData, $this->fileData);
265 265
 
266 266
         return [
267
-           'keys' => array_keys($fileData),
268
-           'dirs' => $dirs,
267
+            'keys' => array_keys($fileData),
268
+            'dirs' => $dirs,
269 269
         ];
270 270
     }
271 271
 
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
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
  */
20 20
 class AmazonS3 implements
21 21
     Adapter,
22
-                          MetadataSupporter
22
+                            MetadataSupporter
23 23
 {
24 24
     protected $service;
25 25
     protected $bucket;
Please login to merge, or discard this patch.