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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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