Ensure app.debug is always a boolean (#3290)

This commit is contained in:
Graham Campbell
2018-10-18 23:06:36 +01:00
committed by GitHub
parent 8cc92b1d7d
commit 81bc9c3fe5

View File

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