Skip to content
This repository has been archived by the owner on Nov 2, 2020. It is now read-only.

Commit

Permalink
chore(Server): Change the server printing
Browse files Browse the repository at this point in the history
New Server Printing which generate at
https://www.askapache.com/online-tools/figlet-ascii/
  • Loading branch information
Rhilip committed Feb 21, 2019
1 parent f1ca9d9 commit ec68e4a
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions framework/Http/HttpServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,22 +134,16 @@ protected function createSever() {
protected function welcome()
{
println(<<<EOL
────────────────────────────────────────────────────────────────────────────
─████████████████───██████████─████████████───██████████████─██████████████─
─██░░░░░░░░░░░░██───██░░░░░░██─██░░░░░░░░████─██░░░░░░░░░░██─██░░░░░░░░░░██─
─██░░████████░░██───████░░████─██░░████░░░░██─██░░██████░░██─██████░░██████─
─██░░██────██░░██─────██░░██───██░░██──██░░██─██░░██──██░░██─────██░░██─────
─██░░████████░░██─────██░░██───██░░██──██░░██─██░░██████░░██─────██░░██─────
─██░░░░░░░░░░░░██─────██░░██───██░░██──██░░██─██░░░░░░░░░░██─────██░░██─────
─██░░██████░░████─────██░░██───██░░██──██░░██─██░░██████████─────██░░██─────
─██░░██──██░░██───────██░░██───██░░██──██░░██─██░░██─────────────██░░██─────
─██░░██──██░░██████─████░░████─██░░████░░░░██─██░░██─────────────██░░██─────
─██░░██──██░░░░░░██─██░░░░░░██─██░░░░░░░░████─██░░██─────────────██░░██─────
─██████──██████████─██████████─████████████───██████─────────────██████─────
────────────────────────────────────────────────────────────────────────────
____ __ ____ ______
/\ _`\ __ /\ \/\ _`\ /\__ _\
\ \ \L\ \/\_\ \_\ \ \ \L\ \/_/\ \/
\ \ , /\/\ \ /'_` \ \ ,__/ \ \ \
\ \ \\ \\ \ \/\ \L\ \ \ \/ \ \ \
\ \_\ \_\ \_\ \___,_\ \_\ \ \_\
\/_/\/ /\/_/\/__,_ /\/_/ \/_/
EOL
);
println('─────────────────────────────────────');
println('───────────────────────────────────────');
println('Server Name: rid-httpd');
println('System Name: ' . strtolower(PHP_OS));
println('Framework Version: ' . \Rid::VERSION);
Expand All @@ -162,7 +156,7 @@ protected function welcome()
println('Hot Update: ' . ($this->settings['max_request'] == 1 ? 'enabled' : 'disabled'));
println('Coroutine Mode: ' . ($this->settings['enable_coroutine'] ? 'enabled' : 'disabled'));
println('Config File: ' . $this->virtualHost['configFile']);
println('─────────────────────────────────────');
println('───────────────────────────────────────');
}

}

0 comments on commit ec68e4a

Please sign in to comment.