소스 검색

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);
             }
         }