Use Str class instead of helper function
This commit is contained in:
parent
c8bc79e94e
commit
e68ff0c66a
|
@ -1,5 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -117,7 +119,7 @@
|
||||||
|
|
||||||
'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' => [
|
||||||
|
|
Loading…
Reference in New Issue