Pārlūkot izejas kodu

Auto convert tabs to spaces in tree.txt

Vijayakrishnan Krishnan 5 gadi atpakaļ
vecāks
revīzija
975e0e9119
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      app/Console/Commands/GenerateTreeCommand.php

+ 1 - 1
app/Console/Commands/GenerateTreeCommand.php

@@ -37,7 +37,7 @@ class GenerateTreeCommand extends Command
         while (!feof($file)) {
             $line = rtrim(fgets($file));
             if(trim($line) !== '') {
-                $lines[] = $line;
+                $lines[] = str_replace("\t", "    ", $line);
             }
         }