Completed
Push — master ( f04910...93a703 )
by Edgar
04:06
created
src/svg/import/Importer.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,9 @@
 block discarded – undo
176 176
     {
177 177
         /** @var \DOMElement $item */
178 178
         foreach ($element->childNodes as $key => $item) {
179
-            if ($item instanceof \DOMText) continue;
179
+            if ($item instanceof \DOMText) {
180
+                continue;
181
+            }
180 182
             $parent = $this->toObject($item, $obj);
181 183
             if ($item->hasChildNodes() && $parent !== null) {
182 184
                 $this->buildObjectTree($item, $parent);
Please login to merge, or discard this patch.