Ensure that app.debug is a bool

This commit is contained in:
Graham Campbell
2020-03-06 11:47:59 +00:00
committed by GitHub
parent e773d3885b
commit 5ddbfb8454

View File

@@ -39,7 +39,7 @@ return [
|
*/
'debug' => env('APP_DEBUG', false),
'debug' => (bool) env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------