mirror of
https://github.com/predis/predis.git
synced 2026-08-23 02:40:57 +00:00
10 lines
159 B
PHP
10 lines
159 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetRandomMember extends Command {
|
|
public function getCommandId() { return 'SRANDMEMBER'; }
|
|
}
|