mirror of
https://github.com/predis/predis.git
synced 2026-08-24 20:19:41 +00:00
10 lines
172 B
PHP
10 lines
172 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class ZSetIntersectionStore extends ZSetUnionStore {
|
|
public function getCommandId() { return 'ZINTERSTORE'; }
|
|
}
|