Completed
Pull Request — master (#486)
by Dalibor
02:55
created
src/Gaufrette/Adapter/AzureBlobStorage.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
     }
459 459
 
460 460
     /**
461
-     * @param string|resource $content
461
+     * @param string $content
462 462
      *
463 463
      * @return string
464 464
      */
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
     /**
477 477
      * @param string $key
478 478
      *
479
-     * @return array
479
+     * @return string[]
480 480
      * @throws \InvalidArgumentException
481 481
      */
482 482
     private function tokenizeKey($key)
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -512,10 +512,10 @@
 block discarded – undo
512 512
     {
513 513
         $blobList = $this->blobProxy->listBlobs($containerName);
514 514
         return array_map(
515
-            function (Blob $blob) use ($prefix) {
515
+            function(Blob $blob) use ($prefix) {
516 516
                 $name = $blob->getName();
517 517
                 if (null !== $prefix) {
518
-                    $name = $prefix .'/'. $name;
518
+                    $name = $prefix.'/'.$name;
519 519
                 }
520 520
                 return $name;
521 521
             },
Please login to merge, or discard this patch.