Skip to content

Commit 193af22

Browse files
committed
Apply code style suggestions from fabbot
1 parent 578a152 commit 193af22

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

src/Symfony/Component/Cache/Traits/RedisTrait.php

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,10 @@ public static function createConnection(string $dsn, array $options = [])
274274
} elseif (is_a($class, \RedisArray::class, true)) {
275275
foreach ($hosts as $i => $host) {
276276
switch ($host['scheme']) {
277-
case 'tcp': $hosts[$i] = $host['host'].':'.$host['port']; break;
278-
case 'tls': $hosts[$i] = 'tls://'.$host['host'].':'.$host['port']; break;
277+
case 'tcp': $hosts[$i] = $host['host'].':'.$host['port'];
278+
break;
279+
case 'tls': $hosts[$i] = 'tls://'.$host['host'].':'.$host['port'];
280+
break;
279281
default: $hosts[$i] = $host['path'];
280282
}
281283
}
@@ -295,8 +297,10 @@ public static function createConnection(string $dsn, array $options = [])
295297
$initializer = static function () use ($class, $params, $dsn, $hosts) {
296298
foreach ($hosts as $i => $host) {
297299
switch ($host['scheme']) {
298-
case 'tcp': $hosts[$i] = $host['host'].':'.$host['port']; break;
299-
case 'tls': $hosts[$i] = 'tls://'.$host['host'].':'.$host['port']; break;
300+
case 'tcp': $hosts[$i] = $host['host'].':'.$host['port'];
301+
break;
302+
case 'tls': $hosts[$i] = 'tls://'.$host['host'].':'.$host['port'];
303+
break;
300304
default: $hosts[$i] = $host['path'];
301305
}
302306
}
@@ -311,9 +315,12 @@ public static function createConnection(string $dsn, array $options = [])
311315
$redis->setOption(\Redis::OPT_TCP_KEEPALIVE, $params['tcp_keepalive']);
312316
}
313317
switch ($params['failover']) {
314-
case 'error': $redis->setOption(\RedisCluster::OPT_SLAVE_FAILOVER, \RedisCluster::FAILOVER_ERROR); break;
315-
case 'distribute': $redis->setOption(\RedisCluster::OPT_SLAVE_FAILOVER, \RedisCluster::FAILOVER_DISTRIBUTE); break;
316-
case 'slaves': $redis->setOption(\RedisCluster::OPT_SLAVE_FAILOVER, \RedisCluster::FAILOVER_DISTRIBUTE_SLAVES); break;
318+
case 'error': $redis->setOption(\RedisCluster::OPT_SLAVE_FAILOVER, \RedisCluster::FAILOVER_ERROR);
319+
break;
320+
case 'distribute': $redis->setOption(\RedisCluster::OPT_SLAVE_FAILOVER, \RedisCluster::FAILOVER_DISTRIBUTE);
321+
break;
322+
case 'slaves': $redis->setOption(\RedisCluster::OPT_SLAVE_FAILOVER, \RedisCluster::FAILOVER_DISTRIBUTE_SLAVES);
323+
break;
317324
}
318325

319326
return $redis;

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy