Files
predis/lib/Predis/Commands/ZSetRemove.php
T
2011-03-04 19:37:10 +01:00

9 lines
185 B
PHP

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