GetMultiple.php 369 B

123456789101112131415
  1. <?php
  2. namespace Predis\Commands;
  3. use Predis\Utils;
  4. class GetMultiple extends Command {
  5. protected function canBeHashed() {
  6. return $this->checkSameHashForKeys($this->getArguments());
  7. }
  8. public function getId() { return 'MGET'; }
  9. public function filterArguments(Array $arguments) {
  10. return Utils::filterArrayArguments($arguments);
  11. }
  12. }