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
@@ -38,7 +38,7 @@ return [
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'use_path_style_endpoint' => (bool) env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'throw' => false,
],
],