Browse Source

Show PHP version in shell welcome message

Rachman Chavik 11 years ago
parent
commit
75de672e47
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/Console/Shell.php

+ 1 - 0
src/Console/Shell.php

@@ -226,6 +226,7 @@ class Shell
         $this->hr();
         $this->out(sprintf('App : %s', APP_DIR));
         $this->out(sprintf('Path: %s', APP));
+        $this->out(sprintf('PHP : %s', phpversion()));
         $this->hr();
     }