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
commit 20cdf65ae6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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