@@ -267,7 +267,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -69,7 +69,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -83,7 +83,7 @@ |
||
| 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 | } |