Skip to content

Commit

Permalink
remove unused code (#49559)
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkruss committed Jan 3, 2024
1 parent 84d28db commit f493ec5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Illuminate/Redis/Connectors/PhpRedisConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ public function connectToCluster(array $config, array $clusterOptions, array $op
*/
protected function buildClusterConnectionString(array $server)
{
return $this->formatHost($server).':'.$server['port'].'?'.Arr::query(Arr::only($server, [
'database', 'password', 'prefix', 'read_timeout',
]));
return $this->formatHost($server).':'.$server['port'];
}

/**
Expand Down

0 comments on commit f493ec5

Please sign in to comment.