Fix method visibility in Predis\Pipeline\ConnectionErrorProof.

This commit is contained in:
Daniele Alessandri
2014-07-25 16:44:04 +02:00
parent 872d953b50
commit dcb57ea08d
+2 -2
View File
@@ -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);