Completed
Pull Request — master (#170)
by Luke
02:40
created
src/CSVelte/Taster.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,9 @@
 block discarded – undo
234 234
         // callback to build the aforementioned collection
235 235
         $buildTypes = function ($line, $line_no) use ($types, $delim, $eol) {
236 236
 
237
-            if ($line_no > 2) return;
237
+            if ($line_no > 2) {
238
+                return;
239
+            }
238 240
             $line = str_replace(self::PLACEHOLDER_NEWLINE, $eol, $line);
239 241
             $getType = function ($field, $colpos) use ($types, $line, $line_no, $delim) {
240 242
                 $field = str_replace(self::PLACEHOLDER_DELIM, $delim, $field);
Please login to merge, or discard this patch.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -513,12 +513,12 @@  discard block
 block discarded – undo
513 513
                 return $this->guessDelimByDistribution($decision, $eol);
514 514
             } catch (TasterException $e) {
515 515
                 // if somehow we STILL can't come to a consensus, then fall back to a
516
-                 // "preferred delimiters" list...
517
-                 foreach ($this->delims as $key => $chr) {
518
-                     if (collect($decision)->contains($chr)) {
519
-                         return $chr;
520
-                     }
521
-                 }
516
+                    // "preferred delimiters" list...
517
+                    foreach ($this->delims as $key => $chr) {
518
+                        if (collect($decision)->contains($chr)) {
519
+                            return $chr;
520
+                        }
521
+                    }
522 522
             }
523 523
         }
524 524
 
@@ -588,8 +588,8 @@  discard block
 block discarded – undo
588 588
             })->map(function ($dists) {
589 589
                 return $dists->average();
590 590
             })->sort()
591
-              ->reverse()
592
-              ->getKeyAtPosition(0)];
591
+                ->reverse()
592
+                ->getKeyAtPosition(0)];
593 593
         } catch (Exception $e) {
594 594
             throw new TasterException('delimiter cannot be determined by distribution', TasterException::ERR_DELIMITER);
595 595
         }
Please login to merge, or discard this patch.