ZSetAdd.php 210 B

12345678910
  1. <?php
  2. namespace Predis\Commands;
  3. use Predis\Command;
  4. class ZSetAdd extends Command {
  5. public function getCommandId() { return 'ZADD'; }
  6. public function parseResponse($data) { return (bool) $data; }
  7. }