Skip to content

Commit 5ddbfb8

Browse files
Ensure that app.debug is a bool
1 parent e773d38 commit 5ddbfb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
|
4040
*/
4141

42-
'debug' => env('APP_DEBUG', false),
42+
'debug' => (bool) env('APP_DEBUG', false),
4343

4444
/*
4545
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)