Browse Source

Move the environment settings into their own file.

Taylor Otwell 10 years ago
parent
commit
e5fe0aff57
2 changed files with 19 additions and 5 deletions
  1. 18 0
      bootstrap/environment.php
  2. 1 5
      bootstrap/start.php

+ 18 - 0
bootstrap/environment.php

@@ -0,0 +1,18 @@
+<?php
+
+/*
+|--------------------------------------------------------------------------
+| Detect The Application Environment
+|--------------------------------------------------------------------------
+|
+| Laravel takes a dead simple approach to your application environments
+| so you can just specify a machine name for the host that matches a
+| given environment, then we will automatically detect it for you.
+|
+*/
+
+$env = $app->detectEnvironment([
+
+	'local' => ['homestead'],
+
+]);

+ 1 - 5
bootstrap/start.php

@@ -24,11 +24,7 @@ $app = new Illuminate\Foundation\Application;
 |
 */
 
-$env = $app->detectEnvironment(array(
-
-	'local' => array('homestead'),
-
-));
+require __DIR__.'/environment.php';
 
 /*
 |--------------------------------------------------------------------------