浏览代码

Auto convert tabs to spaces in tree.txt

Vijayakrishnan Krishnan 5 年之前
父节点
当前提交
975e0e9119
共有 1 个文件被更改,包括 1 次插入1 次删除
  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);
             }
         }