From 367ca6e31ea438630ac2428c6cffab524a39032e Mon Sep 17 00:00:00 2001 From: Daniele Alessandri Date: Thu, 1 Dec 2011 14:50:34 +0100 Subject: [PATCH] Fix mistype in the ServerEval class. --- lib/Predis/Commands/ServerEval.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Predis/Commands/ServerEval.php b/lib/Predis/Commands/ServerEval.php index fe647871..7370e0fe 100644 --- a/lib/Predis/Commands/ServerEval.php +++ b/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)); } }