Browse Source

Merge pull request #6157 from rchavik/3.1-show-version

Show PHP version in shell welcome message
Mark Story 11 years ago
parent
commit
7140aa4d57
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();
     }