1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace Predis\Command;
- class ServerEvalSHA extends ServerEval
- {
-
- public function getId()
- {
- return 'EVALSHA';
- }
-
- public function getScriptHash()
- {
- return $this->getArgument(0);
- }
- }
|