ZSetRemoveRangeByRank.php 157 B

1234567891011
  1. <?php
  2. namespace Predis\Commands;
  3. class ZSetRemoveRangeByRank extends Command
  4. {
  5. public function getId()
  6. {
  7. return 'ZREMRANGEBYRANK';
  8. }
  9. }