mirror of
https://github.com/predis/predis.git
synced 2026-08-25 03:09:37 +00:00
11 lines
209 B
PHP
11 lines
209 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetAdd extends Command {
|
|
public function getCommandId() { return 'SADD'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|