mirror of
https://github.com/predis/predis.git
synced 2026-08-23 19:04:06 +00:00
10 lines
143 B
PHP
10 lines
143 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetRandomMember extends Command {
|
|
public function getId() {
|
|
return 'SRANDMEMBER';
|
|
}
|
|
}
|