From 04c49c5398a1370f851c5ae3965cda3857e09ff9 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Tue, 25 Feb 2020 14:21:53 -0700 Subject: [PATCH] Changed debug envar to APP_DEBUG --- .env.example | 5 +---- app/config/app.php | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.env.example b/.env.example index 9748971..5e78262 100644 --- a/.env.example +++ b/.env.example @@ -1,11 +1,8 @@ -DEBUG=false - +APP_DEBUG=false APP_LANGUAGE=en DARK_MODE=false - DISPLAY_READMES=true - ZIP_DOWNLOADS=true GOOGLE_ANALYTICS_ID=false diff --git a/app/config/app.php b/app/config/app.php index 5a8cb41..79f3471 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -12,7 +12,7 @@ return [ * * Default value: false */ - 'debug' => Helpers::env('DEBUG'), + 'debug' => Helpers::env('APP_DEBUG'), /** * The application interface language.