diff --git a/bootstrap/environment.php b/bootstrap/environment.php new file mode 100644 index 00000000..f133a3d9 --- /dev/null +++ b/bootstrap/environment.php @@ -0,0 +1,18 @@ +detectEnvironment([ + + 'local' => ['homestead'], + +]); diff --git a/bootstrap/start.php b/bootstrap/start.php index 84559be3..949f2e5f 100644 --- a/bootstrap/start.php +++ b/bootstrap/start.php @@ -24,11 +24,7 @@ $app = new Illuminate\Foundation\Application; | */ -$env = $app->detectEnvironment(array( - - 'local' => array('homestead'), - -)); +require __DIR__.'/environment.php'; /* |--------------------------------------------------------------------------