mirror of
https://github.com/predis/predis.git
synced 2026-08-24 08:19:39 +00:00
10 lines
151 B
PHP
10 lines
151 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetMembers extends Command {
|
|
public function getCommandId() { return 'SMEMBERS'; }
|
|
}
|