Completed
Pull Request — develop (#141)
by Markus
24:00
created
src/PhpSpreadsheet/Reader/Csv.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@
 block discarded – undo
164 164
         $potentialDelimiters = [ ',', ';', "\t", '|', ':', ' ' ];
165 165
         $count = array();
166 166
         foreach ($potentialDelimiters as $delimiter) {
167
-          $counts[$delimiter] = array();
167
+            $counts[$delimiter] = array();
168 168
         }
169 169
 
170 170
         // Count how many times each of the potential delimiters appears in each line
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
             return;
162 162
         }
163 163
 
164
-        $potentialDelimiters = [ ',', ';', "\t", '|', ':', ' ' ];
164
+        $potentialDelimiters = [',', ';', "\t", '|', ':', ' '];
165 165
         $count = array();
166 166
         foreach ($potentialDelimiters as $delimiter) {
167 167
           $counts[$delimiter] = array();
Please login to merge, or discard this patch.