mirror of
https://github.com/predis/predis.git
synced 2026-08-20 15:32:13 +00:00
10 lines
137 B
PHP
10 lines
137 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ZSetCardinality extends Command {
|
|
public function getId() {
|
|
return 'ZCARD';
|
|
}
|
|
}
|