ListPopLastPushHead.php 245 B

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