aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamil Staps2016-01-04 16:00:42 +0100
committerCamil Staps2016-01-04 16:06:04 +0100
commit715c7a714f49e691a1ad2d7e9757c651501b313c (patch)
tree7713a1ef63e19329c52b4ca1efb68610d6c4bd2a
parentMigrations: stems, tenses, roots, verbs, translations (diff)
Enable dotenv; eloquent; facades
-rw-r--r--bootstrap/app.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap/app.php b/bootstrap/app.php
index 0ce23f0..1c06a3f 100644
--- a/bootstrap/app.php
+++ b/bootstrap/app.php
@@ -2,7 +2,7 @@
require_once __DIR__.'/../vendor/autoload.php';
-// Dotenv::load(__DIR__.'/../');
+Dotenv::load(__DIR__.'/../');
/*
|--------------------------------------------------------------------------
@@ -19,9 +19,9 @@ $app = new Laravel\Lumen\Application(
realpath(__DIR__.'/../')
);
-// $app->withFacades();
+$app->withFacades();
-// $app->withEloquent();
+$app->withEloquent();
/*
|--------------------------------------------------------------------------