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