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