Explorar o código

Fix mistype in the ServerEval class.

Daniele Alessandri %!s(int64=14) %!d(string=hai) anos
pai
achega
367ca6e31e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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));
     }
 }