Skip to content

Commit d09cd39

Browse files
committed
Revert php-cs-fixer style changes
1 parent 94df523 commit d09cd39

File tree

2 files changed

+42
-38
lines changed

2 files changed

+42
-38
lines changed

.php-cs-fixer.dist.php

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
'phpdoc_annotation_without_dot' => false,
2020
'no_superfluous_phpdoc_tags' => false,
2121
'no_unneeded_curly_braces' => false,
22+
'no_unneeded_braces' => false,
2223
'global_namespace_import' => true,
2324
'yoda_style' => false,
2425
'single_line_throw' => false,

src/Connection/Replication/SentinelReplication.php

+41-38
Original file line numberDiff line numberDiff line change
@@ -316,30 +316,31 @@ public function getSentinelConnection()
316316
*/
317317
public function updateSentinels()
318318
{
319-
SENTINEL_QUERY:
319+
SENTINEL_QUERY: {
320320
$sentinel = $this->getSentinelConnection();
321321

322-
try {
323-
$payload = $sentinel->executeCommand(
324-
RawCommand::create('SENTINEL', 'sentinels', $this->service)
325-
);
326-
327-
$this->sentinels = [];
328-
$this->sentinelIndex = 0;
329-
// NOTE: sentinel server does not return itself, so we add it back.
330-
$this->sentinels[] = $sentinel->getParameters()->toArray();
331-
332-
foreach ($payload as $sentinel) {
333-
$this->sentinels[] = [
334-
'host' => $sentinel[3],
335-
'port' => $sentinel[5],
336-
'role' => 'sentinel',
337-
];
338-
}
339-
} catch (ConnectionException $exception) {
340-
$this->sentinelConnection = null;
322+
try {
323+
$payload = $sentinel->executeCommand(
324+
RawCommand::create('SENTINEL', 'sentinels', $this->service)
325+
);
326+
327+
$this->sentinels = [];
328+
$this->sentinelIndex = 0;
329+
// NOTE: sentinel server does not return itself, so we add it back.
330+
$this->sentinels[] = $sentinel->getParameters()->toArray();
331+
332+
foreach ($payload as $sentinel) {
333+
$this->sentinels[] = [
334+
'host' => $sentinel[3],
335+
'port' => $sentinel[5],
336+
'role' => 'sentinel',
337+
];
338+
}
339+
} catch (ConnectionException $exception) {
340+
$this->sentinelConnection = null;
341341

342-
goto SENTINEL_QUERY;
342+
goto SENTINEL_QUERY;
343+
}
343344
}
344345
}
345346

@@ -457,18 +458,19 @@ public function getMaster()
457458
$this->updateSentinels();
458459
}
459460

460-
SENTINEL_QUERY:
461+
SENTINEL_QUERY: {
461462
$sentinel = $this->getSentinelConnection();
462463

463-
try {
464-
$masterParameters = $this->querySentinelForMaster($sentinel, $this->service);
465-
$masterConnection = $this->connectionFactory->create($masterParameters);
464+
try {
465+
$masterParameters = $this->querySentinelForMaster($sentinel, $this->service);
466+
$masterConnection = $this->connectionFactory->create($masterParameters);
466467

467-
$this->add($masterConnection);
468-
} catch (ConnectionException $exception) {
469-
$this->sentinelConnection = null;
468+
$this->add($masterConnection);
469+
} catch (ConnectionException $exception) {
470+
$this->sentinelConnection = null;
470471

471-
goto SENTINEL_QUERY;
472+
goto SENTINEL_QUERY;
473+
}
472474
}
473475

474476
return $masterConnection;
@@ -487,19 +489,20 @@ public function getSlaves()
487489
$this->updateSentinels();
488490
}
489491

490-
SENTINEL_QUERY:
492+
SENTINEL_QUERY: {
491493
$sentinel = $this->getSentinelConnection();
492494

493-
try {
494-
$slavesParameters = $this->querySentinelForSlaves($sentinel, $this->service);
495+
try {
496+
$slavesParameters = $this->querySentinelForSlaves($sentinel, $this->service);
497+
498+
foreach ($slavesParameters as $slaveParameters) {
499+
$this->add($this->connectionFactory->create($slaveParameters));
500+
}
501+
} catch (ConnectionException $exception) {
502+
$this->sentinelConnection = null;
495503

496-
foreach ($slavesParameters as $slaveParameters) {
497-
$this->add($this->connectionFactory->create($slaveParameters));
504+
goto SENTINEL_QUERY;
498505
}
499-
} catch (ConnectionException $exception) {
500-
$this->sentinelConnection = null;
501-
502-
goto SENTINEL_QUERY;
503506
}
504507

505508
return array_values($this->slaves);

0 commit comments

Comments
 (0)