Fix type casting for environment variables in config files (#6670)

This commit is contained in:
Ahmed Alaa
2025-09-08 01:58:17 +03:00
committed by GitHub
parent 39072d072c
commit a696e5fd51

View File

@@ -129,7 +129,7 @@ return [
'cookie' => env(
'SESSION_COOKIE',
Str::slug(env('APP_NAME', 'laravel')).'-session'
Str::slug((string) env('APP_NAME', 'laravel')).'-session'
),
/*