Browse Source

Merge pull request #4987 from DivineOmega/patch-1

[5.8] Remove underscore from cache prefix
Taylor Otwell 5 years ago
parent
commit
20cdf65ae6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/cache.php

+ 1 - 1
config/cache.php

@@ -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'),
 
 ];