ZSetRemove.php 192 B

12345678
  1. <?php
  2. namespace Predis\Commands;
  3. class ZSetRemove extends Command {
  4. public function getCommandId() { return 'ZREM'; }
  5. public function parseResponse($data) { return (bool) $data; }
  6. }