浏览代码

Fix mistype in the ServerEval class.

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

+ 1 - 1
lib/Predis/Commands/ServerEval.php

@@ -54,6 +54,6 @@ class ServerEval extends Command
      */
     public function getScriptHash()
     {
-        returns sha1($this->getArgument(0));
+        return sha1($this->getArgument(0));
     }
 }