mirror of
https://github.com/predis/predis.git
synced 2026-08-26 09:59:53 +00:00
10 lines
170 B
PHP
10 lines
170 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetUnionStore extends SetIntersectionStore {
|
|
public function getCommandId() { return 'SUNIONSTORE'; }
|
|
}
|