Przeglądaj źródła

Auto convert tabs to spaces in tree.txt

Vijayakrishnan Krishnan 5 lat temu
rodzic
commit
975e0e9119
1 zmienionych plików z 1 dodań i 1 usunięć
  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);
             }
         }