mirror of
https://github.com/predis/predis.git
synced 2026-09-03 22:36:44 +00:00
Fix method visibility in Predis\Pipeline\ConnectionErrorProof.
This commit is contained in:
@@ -54,7 +54,7 @@ class ConnectionErrorProof extends Pipeline
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function executeSingleNode(NodeConnectionInterface $connection, SplQueue $commands)
|
||||
protected function executeSingleNode(NodeConnectionInterface $connection, SplQueue $commands)
|
||||
{
|
||||
$responses = array();
|
||||
$sizeOfPipe = count($commands);
|
||||
@@ -86,7 +86,7 @@ class ConnectionErrorProof extends Pipeline
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function executeCluster(ClusterInterface $connection, SplQueue $commands)
|
||||
protected function executeCluster(ClusterInterface $connection, SplQueue $commands)
|
||||
{
|
||||
$responses = array();
|
||||
$sizeOfPipe = count($commands);
|
||||
|
||||
Reference in New Issue
Block a user