Passed
Branch master (2777cc)
by Rougin
03:08
created
src/Converters/ListItemConverter.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,9 @@
 block discarded – undo
33 33
         // If list item is the first in a nested list, add a newline before it
34 34
         $prefix = '';
35 35
 
36
-        if ($level > 0 && $element->getSiblingPosition() === 1) $prefix = "\n";
36
+        if ($level > 0 && $element->getSiblingPosition() === 1) {
37
+            $prefix = "\n";
38
+        }
37 39
 
38 40
         if ($list_type === 'ol') {
39 41
             $number = $element->getSiblingPosition();
Please login to merge, or discard this patch.