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