[12.x] Fix type casting for environment variables in config files (#6637)

* Update app.php

* Update cache.php

* Update database.php

* Update logging.php

* Update mail.php
This commit is contained in:
Ahmed Alaa
2025-07-03 16:32:07 +03:00
committed by GitHub
parent dd473eaddc
commit 4ab121576e
5 changed files with 5 additions and 5 deletions

View File

@@ -103,6 +103,6 @@ return [
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel')).'-cache-'),
'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-cache-'),
];