Parcourir la source

Fix mistype in the ServerEval class.

Daniele Alessandri il y a 14 ans
Parent
commit
367ca6e31e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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));
     }
 }