Completed
Pull Request — master (#437)
by Albin
03:49 queued 01:33
created
src/Gaufrette/Adapter/Azure/spec/BlobStorageSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             ->getContentStream()
37 37
             ->shouldBeCalled()
38 38
             //azure blob content is handled as stream so we need to fake it
39
-            ->willReturn(fopen('data://text/plain,some content','r'));
39
+            ->willReturn(fopen('data://text/plain,some content', 'r'));
40 40
 
41 41
         $blobProxy
42 42
             ->getBlob('containerName', 'filename')
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/Azure/src/BlobStorage.php 1 patch
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.