Completed
Branch master (2772d0)
by Arne
03:15
created
src/Vault.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
                     {
268 268
                         $blobId = $mergedIndex->generateNewBlobId();
269 269
                     }
270
-                    while($this->vaultConnection->exists($blobId));
270
+                    while ($this->vaultConnection->exists($blobId));
271 271
 
272 272
                     $indexObject->setBlobId($blobId);
273 273
 
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
     {
324 324
         $index = new Index($created);
325 325
 
326
-        while(($row = fgetcsv($stream)) !== false)
326
+        while (($row = fgetcsv($stream)) !== false)
327 327
         {
328 328
             $index->addObject(IndexObject::fromIndexRecord($row));
329 329
         }
Please login to merge, or discard this patch.
src/Connection/StreamConnection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                         sleep(5);
70 70
                     }
71 71
                 }
72
-                while($wait);
72
+                while ($wait);
73 73
             }
74 74
 
75 75
             // only write lock if no other exists (or $force is true)
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         {
116 116
             @fclose($this->getStream($relativePath, 'r'));
117 117
         }
118
-        catch(\RuntimeException $exception)
118
+        catch (\RuntimeException $exception)
119 119
         {
120 120
             return false;
121 121
         }
Please login to merge, or discard this patch.
src/Index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
         {
84 84
             $blobId = Uuid::uuid4();
85 85
         }
86
-        while($this->getObjectByBlobId($blobId) !== null);
86
+        while ($this->getObjectByBlobId($blobId) !== null);
87 87
 
88 88
         return $blobId;
89 89
     }
Please login to merge, or discard this patch.