From a5fc02d832ed91ac3da6408c2548314b8116fb79 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 14 Sep 2018 10:38:02 -0500 Subject: [PATCH] use class --- config/cache.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/cache.php b/config/cache.php index 6c4629d2..69b6a416 100644 --- a/config/cache.php +++ b/config/cache.php @@ -1,5 +1,7 @@ env( 'CACHE_PREFIX', - str_slug(env('APP_NAME', 'laravel'), '_').'_cache' + Str::slug(env('APP_NAME', 'laravel'), '_').'_cache' ), ];