Add (bool) type casts to all boolean env() calls across config files

This commit is contained in:
root
2026-05-26 16:40:52 +02:00
parent f5c21e36f1
commit 93e6f6a273
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ return [
|
*/
'enabled' => env('LOG_VIEWER_ENABLED', true),
'enabled' => (bool) env('LOG_VIEWER_ENABLED', true),
'require_auth_in_production' => true,