소스 검색

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

Daniele Alessandri 14 년 전
부모
커밋
8efe76ad60
1개의 변경된 파일1개의 추가작업 그리고 9개의 파일을 삭제
  1. 1 9
      lib/Predis/Commands/ServerEvalSHA.php

+ 1 - 9
lib/Predis/Commands/ServerEvalSHA.php

@@ -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;
-    }
 }