Completed
Push — master ( fa0d52...fef7a6 )
by Arne
01:59
created
src/LockAdapter/StorageBasedLockAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
         $started = time();
35 35
 
36
-        while(true)
36
+        while (true)
37 37
         {
38 38
             if (!$this->storageDriver->exists($lockFileName))
39 39
             {
Please login to merge, or discard this patch.
src/Vault.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -292,8 +292,7 @@
 block discarded – undo
292 292
         {
293 293
             $newRevision = $newRevision ?: ($lastSynchronization->getRevision() + 1);
294 294
             $remoteIndex = $this->doLoadRemoteIndex($lastSynchronization->getRevision(), $synchronizationList);
295
-        }
296
-        else
295
+        } else
297 296
         {
298 297
             $newRevision = $newRevision ?: 1;
299 298
             $remoteIndex = null;
Please login to merge, or discard this patch.
src/StorageDriver/StorageDriverFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 {
15 15
     public function __construct()
16 16
     {
17
-        $this->factoryMap['dummy'] = function ()
17
+        $this->factoryMap['dummy'] = function()
18 18
         {
19 19
             return new DummyStorageDriver();
20 20
         };
Please login to merge, or discard this patch.