Browse Source

Use Request helper to determine whether we're in CLI mode.

Franz Liedke 12 years ago
parent
commit
b1e4cf9d29
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/core.php

+ 1 - 1
laravel/core.php

@@ -213,7 +213,7 @@ if (isset($environment))
 |
 */
 
-if (defined('STDIN'))
+if (Request::cli())
 {
 	$console = CLI\Command::options($_SERVER['argv']);