Completed
Push — master ( 65570c...bf6ec7 )
by Arne
03:29 queued 12s
created
src/Index/IndexObject.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -168,17 +168,14 @@
 block discarded – undo
168 168
         {
169 169
             $object->type = static::TYPE_LINK;
170 170
             $object->linkTarget = str_replace($basePath, '', readlink($absolutePath));
171
-        }
172
-        elseif (is_file($absolutePath))
171
+        } elseif (is_file($absolutePath))
173 172
         {
174 173
             $object->type = static::TYPE_FILE;
175 174
             $object->size = (int)$stat['size'];
176
-        }
177
-        elseif (is_dir($absolutePath))
175
+        } elseif (is_dir($absolutePath))
178 176
         {
179 177
             $object->type = static::TYPE_DIR;
180
-        }
181
-        else
178
+        } else
182 179
         {
183 180
             throw new \LogicException();
184 181
         }
Please login to merge, or discard this patch.