Completed
Pull Request — master (#457)
by Albin
02:23
created
src/Gaufrette/Adapter/Sftp.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 use Ssh\Sftp as SftpClient;
7 7
 
8 8
 class Sftp implements Adapter,
9
-                      ChecksumCalculator
9
+                        ChecksumCalculator
10 10
 {
11 11
     protected $sftp;
12 12
     protected $directory;
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
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
 use Gaufrette\File;
9 9
 
10 10
 class PhpseclibSftp implements Adapter,
11
-                               FileFactory,
12
-                               ListKeysAware
11
+                                FileFactory,
12
+                                ListKeysAware
13 13
 {
14 14
     protected $sftp;
15 15
     protected $directory;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/OpenCloud.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
  * @author  Daniel Richter <[email protected]>
19 19
  */
20 20
 class OpenCloud implements Adapter,
21
-                           ChecksumCalculator
21
+                            ChecksumCalculator
22 22
 {
23 23
     /**
24 24
      * @var Service
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
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
  * @author  Antoine Hérault <[email protected]>
14 14
  */
15 15
 class Cache implements Adapter,
16
-                       MetadataSupporter
16
+                        MetadataSupporter
17 17
 {
18 18
     /**
19 19
      * @var Adapter
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/Local.php 1 patch
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.
src/Gaufrette/Adapter/DoctrineDbal.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
  * @author Leszek Prabucki <[email protected]>
16 16
  */
17 17
 class DoctrineDbal implements 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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
 
184 184
         return array(
185 185
             'dirs' => array(),
186
-            'keys' => array_map(function ($value) {
186
+            'keys' => array_map(function($value) {
187 187
                     return $value['_key'];
188 188
                 },
189 189
                 $keys),
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.
src/Gaufrette/Adapter/AzureBlobStorage.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@
 block discarded – undo
207 207
             $blobList = $this->blobProxy->listBlobs($this->containerName);
208 208
 
209 209
             return array_map(
210
-                function ($blob) {
210
+                function($blob) {
211 211
                     return $blob->getName();
212 212
                 },
213 213
                 $blobList->getBlobs()
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * @author Paweł Czyżewski <[email protected]>
19 19
  */
20 20
 class AzureBlobStorage implements Adapter,
21
-                                  MetadataSupporter
21
+                                    MetadataSupporter
22 22
 {
23 23
     /**
24 24
      * Error constants.
Please login to merge, or discard this patch.