浏览代码

Add missing method in the Predis\Network\IConnectionCluster interface.

Daniele Alessandri 14 年之前
父节点
当前提交
b013bce140
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      lib/Predis.php

+ 1 - 0
lib/Predis.php

@@ -1169,6 +1169,7 @@ interface IConnectionSingle extends IConnection {
 }
 
 interface IConnectionCluster extends IConnection {
+    public function add(IConnectionSingle $connection);
     public function getConnection(ICommand $command);
     public function getConnectionById($connectionId);
 }