@@ -36,7 +36,7 @@ |
||
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') |
@@ -207,7 +207,7 @@ |
||
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() |