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