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