Skip to content

Commit 26c6252

Browse files
authored
match MasterSlaveReplication (#1175)
* match `MasterSlaveReplication` also the name of this method 😬 * Update SentinelReplication.php
1 parent 8ef75ba commit 26c6252

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/Connection/Replication/SentinelReplication.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -509,13 +509,15 @@ public function getSlaves()
509509
/**
510510
* Returns a random slave.
511511
*
512-
* @return NodeConnectionInterface
512+
* @return NodeConnectionInterface|null
513513
*/
514514
protected function pickSlave()
515515
{
516-
if ($slaves = $this->getSlaves()) {
517-
return $slaves[rand(1, count($slaves)) - 1];
518-
}
516+
$slaves = $this->getSlaves();
517+
518+
return $slaves
519+
? $slaves[rand(1, count($slaves)) - 1]
520+
: null;
519521
}
520522

521523
/**

0 commit comments

Comments
 (0)