Ensure that app.debug is a bool
This commit is contained in:
parent
e773d3885b
commit
5ddbfb8454
|
@ -39,7 +39,7 @@
|
|||
|
|
||||
*/
|
||||
|
||||
'debug' => env('APP_DEBUG', false),
|
||||
'debug' => (bool) env('APP_DEBUG', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue