Skip to content

Commit

Permalink
Merge pull request phalcon#16 from racklin/enhancement/logo
Browse files Browse the repository at this point in the history
Added ASCII Art logo to zephir help.
  • Loading branch information
niden committed Oct 8, 2013
2 parents d004835 + d341b3c commit 6c70886
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Library/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ class Compiler

const VERSION = '0.2.1a';

const LOGO ='
_____ __ _
/__ / ___ ____ / /_ (_)____
/ / / _ \/ __ \/ __ \/ / ___/
/ /__/ __/ /_/ / / / / / /
/____/\___/ .___/_/ /_/_/_/
/_/
';

/**
* Pre-compiles classes creating a CompilerFile definition
*
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 6c70886

Please sign in to comment.