Completed
Push — master ( 83bd2d...9517e2 )
by Arne
03:10
created
src/Vault.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -391,6 +391,9 @@
 block discarded – undo
391 391
         return $operationCollection;
392 392
     }
393 393
 
394
+    /**
395
+     * @param resource $stream
396
+     */
394 397
     protected function readIndexFromStream($stream, \DateTime $created = null): Index
395 398
     {
396 399
         $index = new Index($created);
Please login to merge, or discard this patch.
src/Operation/UploadOperation.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,7 @@
 block discarded – undo
24 24
         try
25 25
         {
26 26
             $this->vaultConnection->writeStream($this->blobId, $localStream);
27
-        }
28
-        catch (\RuntimeException $exception)
27
+        } catch (\RuntimeException $exception)
29 28
         {
30 29
             return false;
31 30
         }
Please login to merge, or discard this patch.