diff --git a/src/CLI.php b/src/CLI.php index ddb24ac..d462e2f 100644 --- a/src/CLI.php +++ b/src/CLI.php @@ -52,7 +52,7 @@ public static function supportsAnsi() : bool || \getenv('WT_SESSION') !== false || \getenv('TERM_PROGRAM') === 'vscode' || (\function_exists('sapi_windows_vt100_support') - && \sapi_windows_vt100_support(\STDOUT)); + && sapi_windows_vt100_support(\STDOUT)); } return true; diff --git a/src/Commands/Index.php b/src/Commands/Index.php index 5d81245..88de329 100644 --- a/src/Commands/Index.php +++ b/src/Commands/Index.php @@ -120,15 +120,15 @@ protected function getWidthAndLengths(array $commands) : array protected function showHeader() : void { $text = <<<'EOL' - $$\ $$\ $$$$$$$$\ $$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$$\ $$$$$$\ - $$ | $\ $$ |$$ _____|$$ __$$\ \_$$ _|$$ __$$\\__$$ __|$$ _____|$$ __$$\ $$ __$$\ - $$ |$$$\ $$ |$$ | $$ | $$ | $$ | $$ / \__| $$ | $$ | $$ | $$ |$$ / \__| - $$ $$ $$\$$ |$$$$$\ $$$$$$$\ | $$ | \$$$$$$\ $$ | $$$$$\ $$$$$$$ |\$$$$$$\ - $$$$ _$$$$ |$$ __| $$ __$$\ $$ | \____$$\ $$ | $$ __| $$ __$$< \____$$\ - $$$ / \$$$ |$$ | $$ | $$ | $$ | $$\ $$ | $$ | $$ | $$ | $$ |$$\ $$ | - $$ / \$$ |$$$$$$$$\ $$$$$$$ |$$$$$$\ \$$$$$$ | $$ | $$$$$$$$\ $$ | $$ |\$$$$$$ | - \__/ \__|\________|\_______/ \______| \______/ \__| \________|\__| \__| \______/ - EOL; + $$\ $$\ $$$$$$$$\ $$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$$\ $$$$$$\ + $$ | $\ $$ |$$ _____|$$ __$$\ \_$$ _|$$ __$$\\__$$ __|$$ _____|$$ __$$\ $$ __$$\ + $$ |$$$\ $$ |$$ | $$ | $$ | $$ | $$ / \__| $$ | $$ | $$ | $$ |$$ / \__| + $$ $$ $$\$$ |$$$$$\ $$$$$$$\ | $$ | \$$$$$$\ $$ | $$$$$\ $$$$$$$ |\$$$$$$\ + $$$$ _$$$$ |$$ __| $$ __$$\ $$ | \____$$\ $$ | $$ __| $$ __$$< \____$$\ + $$$ / \$$$ |$$ | $$ | $$ | $$ | $$\ $$ | $$ | $$ | $$ | $$ |$$\ $$ | + $$ / \$$ |$$$$$$$$\ $$$$$$$ |$$$$$$\ \$$$$$$ | $$ | $$$$$$$$\ $$ | $$ |\$$$$$$ | + \__/ \__|\________|\_______/ \______| \______/ \__| \________|\__| \__| \______/ + EOL; CLI::write($text, ForegroundColor::green); }