From 5ddbfb845439fcd5a46c23530b8774421a931760 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Fri, 6 Mar 2020 11:47:59 +0000 Subject: [PATCH] Ensure that app.debug is a bool --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index c9960cde..9e5b36cf 100644 --- a/config/app.php +++ b/config/app.php @@ -39,7 +39,7 @@ return [ | */ - 'debug' => env('APP_DEBUG', false), + 'debug' => (bool) env('APP_DEBUG', false), /* |--------------------------------------------------------------------------