소스 검색

Added the new public method Client::setServerProfile.

Daniele Alessandri 16 년 전
부모
커밋
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();
     }