Merge pull request #4987 from DivineOmega/patch-1

[5.8] Remove underscore from cache prefix
This commit is contained in:
Taylor Otwell
2019-04-10 07:31:29 -05:00
committed by GitHub

View File

@@ -97,6 +97,6 @@ return [
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'),
];