ListPopLastPushHead.php 258 B

12345678910111213
  1. <?php
  2. namespace Predis\Commands;
  3. class ListPopLastPushHead extends Command {
  4. public function getId() {
  5. return 'RPOPLPUSH';
  6. }
  7. protected function canBeHashed() {
  8. return $this->checkSameHashForKeys($this->getArguments());
  9. }
  10. }