From 81bc9c3fe5df4d207acb79b11064bc581278cb73 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Thu, 18 Oct 2018 23:06:36 +0100 Subject: [PATCH] Ensure app.debug is always a boolean (#3290) --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index e16e4a7ac36e..40636c40d1b0 100644 --- a/config/app.php +++ b/config/app.php @@ -47,7 +47,7 @@ | */ - 'debug' => env('APP_DEBUG', false), + 'debug' => (bool) env('APP_DEBUG', false), /* |--------------------------------------------------------------------------