This commit is contained in:
Graham Campbell
2014-12-20 21:20:17 +00:00
parent 26e4361d8a
commit 9d8d89248f
103 changed files with 2478 additions and 2353 deletions

View File

@@ -11,7 +11,7 @@
|
*/
$app = new Illuminate\Foundation\Application;
$app = new Illuminate\Foundation\Application();
/*
|--------------------------------------------------------------------------
@@ -24,10 +24,10 @@ $app = new Illuminate\Foundation\Application;
|
*/
$env = $app->detectEnvironment(function() {
$env = $app->detectEnvironment(function () {
// Set the environment if set, otherwise it's local
return getenv('ENV') ?: 'local';
// Set the environment if set, otherwise it's local
return getenv('ENV') ?: 'local';
});
/*