Skip to content

Commit

Permalink
Ensure app.debug is always a boolean (#3290)
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Oct 18, 2018
1 parent 8cc92b1 commit 81bc9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
|
*/

'debug' => env('APP_DEBUG', false),
'debug' => (bool) env('APP_DEBUG', false),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 81bc9c3

Please sign in to comment.