mirror of
https://github.com/predis/predis.git
synced 2026-08-20 08:31:54 +00:00
10 lines
128 B
PHP
10 lines
128 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetPop extends Command {
|
|
public function getId() {
|
|
return 'SPOP';
|
|
}
|
|
}
|