From d341b3ca21e1ffbf7710b5c3b3cb2103c4ab247c Mon Sep 17 00:00:00 2001 From: Rack Lin Date: Tue, 8 Oct 2013 15:28:54 +0800 Subject: [PATCH] Added ASCII Art logo to zephir help. Signed-off-by: Rack Lin --- Library/Compiler.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Library/Compiler.php b/Library/Compiler.php index 2026ea60744..54114af9221 100644 --- a/Library/Compiler.php +++ b/Library/Compiler.php @@ -40,6 +40,15 @@ class Compiler const VERSION = '0.2.1a'; + const LOGO =' + _____ __ _ +/__ / ___ ____ / /_ (_)____ + / / / _ \/ __ \/ __ \/ / ___/ + / /__/ __/ /_/ / / / / / / +/____/\___/ .___/_/ /_/_/_/ + /_/ +'; + /** * Pre-compiles classes creating a CompilerFile definition * @@ -733,6 +742,7 @@ public static function boot() */ public function help() { + echo self::LOGO, PHP_EOL; echo "zephir version " , self::VERSION, PHP_EOL, PHP_EOL; echo "Usage: ", PHP_EOL; echo "\tcommand [options]", PHP_EOL;