Completed
Push — master ( 63b887...b350e3 )
by Arne
01:47
created
src/IndexObject.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -173,17 +173,14 @@
 block discarded – undo
173 173
         {
174 174
             $object->type = static::TYPE_FILE;
175 175
             $object->size = (int)$stat['size'];
176
-        }
177
-        elseif (is_dir($absolutePath))
176
+        } elseif (is_dir($absolutePath))
178 177
         {
179 178
             $object->type = static::TYPE_DIR;
180
-        }
181
-        elseif (is_link($absolutePath))
179
+        } elseif (is_link($absolutePath))
182 180
         {
183 181
             $object->type = static::TYPE_LINK;
184 182
             $object->linkTarget = str_replace($basePath, '', readlink($absolutePath));
185
-        }
186
-        else
183
+        } else
187 184
         {
188 185
             throw new \LogicException();
189 186
         }
Please login to merge, or discard this patch.
src/IndexMerger/StandardIndexMerger.php 1 patch
Braces   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -110,9 +110,7 @@
 block discarded – undo
110 110
 
111 111
                     // compare remote object to object state at last sync
112 112
                     $remoteObjectModified = !$remoteObject->equals($lastLocalObject);
113
-                }
114
-
115
-                else
113
+                } else
116 114
                 {
117 115
                     // object already didn't exist locally at the last sync
118 116
                     $localObjectModified = false;
Please login to merge, or discard this patch.