瀏覽代碼

The second parameter for RedisServerProfile::createCommandInstance is now optional.

Daniele Alessandri 15 年之前
父節點
當前提交
3ccbff4277
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -631,7 +631,7 @@ abstract class RedisServerProfile {
 
     protected abstract function getSupportedCommands();
 
-    public function createCommandInstance($method, $arguments) {
+    public function createCommandInstance($method, $arguments = array()) {
         $commandClass = $this->_registeredCommands[$method];
 
         if ($commandClass === null) {