Files
predis/lib/Predis/Commands/ZSetRemove.php
T

11 lines
213 B
PHP

<?php
namespace Predis\Commands;
use Predis\Command;
class ZSetRemove extends Command {
public function getCommandId() { return 'ZREM'; }
public function parseResponse($data) { return (bool) $data; }
}