mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
[11.x] Removed useless null parameter for env helper (cache.php) (#6374)
This commit is contained in:
parent
a6ce688ad1
commit
51c4166bfb
@ -41,8 +41,8 @@ return [
|
|||||||
'database' => [
|
'database' => [
|
||||||
'driver' => 'database',
|
'driver' => 'database',
|
||||||
'table' => env('DB_CACHE_TABLE', 'cache'),
|
'table' => env('DB_CACHE_TABLE', 'cache'),
|
||||||
'connection' => env('DB_CACHE_CONNECTION', null),
|
'connection' => env('DB_CACHE_CONNECTION'),
|
||||||
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION', null),
|
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
|
||||||
],
|
],
|
||||||
|
|
||||||
'file' => [
|
'file' => [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user