mirror of
https://github.com/predis/predis.git
synced 2026-08-20 09:12:13 +00:00
9 lines
185 B
PHP
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; }
|
|
}
|