Completed
Pull Request — master (#486)
by Dalibor
02:21
created
src/Gaufrette/Adapter/AzureBlobStorage.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -244,7 +244,7 @@
 block discarded – undo
244 244
             $blobList = $this->blobProxy->listBlobs($this->containerName);
245 245
 
246 246
             return array_map(
247
-                function (Blob $blob) {
247
+                function(Blob $blob) {
248 248
                     return $blob->getName();
249 249
                 },
250 250
                 $blobList->getBlobs()
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -411,6 +411,7 @@  discard block
 block discarded – undo
411 411
      *
412 412
      * @param ServiceException $exception
413 413
      * @param string           $action
414
+     * @param string $containerName
414 415
      *
415 416
      * @throws \RuntimeException
416 417
      */
@@ -446,7 +447,7 @@  discard block
 block discarded – undo
446 447
     }
447 448
 
448 449
     /**
449
-     * @param string|resource $content
450
+     * @param string $content
450 451
      *
451 452
      * @return string
452 453
      */
@@ -464,7 +465,7 @@  discard block
 block discarded – undo
464 465
     /**
465 466
      * @param string $key
466 467
      *
467
-     * @return array
468
+     * @return string[]
468 469
      * @throws \InvalidArgumentException
469 470
      */
470 471
     private function tokenizeKey($key)
Please login to merge, or discard this patch.