Passed
Push — master ( 4dc265...7fac60 )
by Mantas
52s
created
src/Code/Converters/CsvConverter.php 1 patch
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,10 @@
 block discarded – undo
97 97
         foreach ($lines as $line) {
98 98
             foreach (self::$allowedSeparators as $delimiter) {
99 99
                 $count = count(explode($delimiter, $line));
100
-                if ($count < 2) continue; // delimiter not found in line, minimum 2 cols (timestamp + text)
100
+                if ($count < 2) {
101
+                    continue;
102
+                }
103
+                // delimiter not found in line, minimum 2 cols (timestamp + text)
101 104
 
102 105
                 if (empty($results[$delimiter])) {
103 106
                     $results[$delimiter] = [];
Please login to merge, or discard this patch.