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
@@ -46,7 +46,7 @@ return [
|
*/
'encrypt' => env('SESSION_ENCRYPT', true),
'encrypt' => (bool) env('SESSION_ENCRYPT', true),
/*
|--------------------------------------------------------------------------