@@ -13,7 +13,7 @@ |
||
| 13 | 13 | * @author Antoine Hérault <[email protected]> |
| 14 | 14 | */ |
| 15 | 15 | class InMemory implements Adapter, |
| 16 | - MimeTypeProvider |
|
| 16 | + MimeTypeProvider |
|
| 17 | 17 | { |
| 18 | 18 | protected $files = array(); |
| 19 | 19 | |
@@ -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() |