Passed
Pull Request — master (#70)
by
unknown
43s
created
src/Code/Converters/VttConverter.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,9 @@
 block discarded – undo
20 20
 
21 21
         $internal_format = [];
22 22
         foreach ($matches as $match) {
23
-            if (empty($match[3])) continue;
23
+            if (empty($match[3])) {
24
+                continue;
25
+            }
24 26
 
25 27
             $lines = explode("\n", $match[3]);
26 28
             $lines_array = array_map(static::fixLine(), $lines);
Please login to merge, or discard this patch.