Use Str class instead of helper function

This commit is contained in:
Jordan Hall
2019-04-04 22:18:28 +01:00
committed by GitHub
parent c8bc79e94e
commit e68ff0c66a

View File

@@ -1,5 +1,7 @@
<?php <?php
use Illuminate\Support\Str;
return [ return [
/* /*
@@ -117,7 +119,7 @@ return [
'options' => [ 'options' => [
'cluster' => env('REDIS_CLUSTER', 'predis'), 'cluster' => env('REDIS_CLUSTER', 'predis'),
'prefix' => str_slug(env('APP_NAME', 'laravel'), '_').'_database', 'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database',
], ],
'default' => [ 'default' => [