mirror of
https://github.com/predis/predis.git
synced 2026-08-21 04:52:04 +00:00
11 lines
210 B
PHP
11 lines
210 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class ZSetAdd extends Command {
|
|
public function getCommandId() { return 'ZADD'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|