Make Predis\Commands\ServerEvalSHA inherited from Predis\Commands\ServerEval.

This commit is contained in:
Daniele Alessandri
2011-05-13 21:36:25 +02:00
parent 2010774b68
commit 8efe76ad60
+1 -9
View File
@@ -2,16 +2,8 @@
namespace Predis\Commands;
class ServerEvalSHA extends Command {
class ServerEvalSHA extends ServerEval {
public function getId() {
return 'EVALSHA';
}
protected function onPrefixKeys(Array $arguments, $prefix) {
/* NOOP */
}
protected function canBeHashed() {
return false;
}
}