diff --git a/application/clicommands/CheckCommand.php b/application/clicommands/CheckCommand.php index b6ddd50..8895959 100644 --- a/application/clicommands/CheckCommand.php +++ b/application/clicommands/CheckCommand.php @@ -103,6 +103,8 @@ class CheckCommand extends Command $output .= $this->renderProblemTree($subtree['children'], $useColors, $depth + 1); } + $output = str_replace("|", "¦", $output); + return $output; }