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

14 lines
210 B
PHP

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