use class

This commit is contained in:
Taylor Otwell 2018-09-14 10:38:02 -05:00
parent 9838f79d2c
commit a5fc02d832
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
<?php <?php
use Illuminate\Support\Str;
return [ return [
/* /*
@ -88,7 +90,7 @@
'prefix' => env( 'prefix' => env(
'CACHE_PREFIX', 'CACHE_PREFIX',
str_slug(env('APP_NAME', 'laravel'), '_').'_cache' Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'
), ),
]; ];