浏览代码

Added the new public method Client::setServerProfile.

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

+ 4 - 0
lib/Predis.php

@@ -72,6 +72,10 @@ class Client {
         $this->_connection = $connection;
     }
 
+    public function setServerProfile(RedisServerProfile $serverProfile) {
+        $this->_serverProfile = $serverProfile;
+    }
+
     public function connect() {
         $this->_connection->connect();
     }