1
0
Fork 0

Merge remote-tracking branch 'romainneutron/ascii-art'

pull/1455/head
Jordi Boggiano 2013-01-05 18:20:51 +01:00
commit cd12df5c1f
1 changed files with 9 additions and 1 deletions

View File

@ -45,6 +45,14 @@ class Application extends BaseApplication
*/ */
protected $io; protected $io;
private static $logo = ' ______
/ ____/___ ____ ___ ____ ____ ________ _____
/ / / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/
/ /___/ /_/ / / / / / / /_/ / /_/ (__ ) __/ /
\____/\____/_/ /_/ /_/ .___/\____/____/\___/_/
/_/
Composer';
public function __construct() public function __construct()
{ {
if (function_exists('ini_set')) { if (function_exists('ini_set')) {
@ -57,7 +65,7 @@ class Application extends BaseApplication
} }
ErrorHandler::register(); ErrorHandler::register();
parent::__construct('Composer', Composer::VERSION); parent::__construct(self::$logo, Composer::VERSION);
} }
/** /**