mirror of
https://github.com/predis/predis.git
synced 2026-08-20 03:11:48 +00:00
14 lines
210 B
PHP
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;
|
|
}
|
|
}
|