Skip to content

Commit

Permalink
Fix types consistency in database config (laravel#5191)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev authored and taylorotwell committed Dec 25, 2019
1 parent 846f7a1 commit 195faa1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,16 +130,16 @@
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_DB', 0),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_DB', '0'),
],

'cache' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_CACHE_DB', 1),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_CACHE_DB', '1'),
],

],
Expand Down

0 comments on commit 195faa1

Please sign in to comment.