mirror of
https://github.com/predis/predis.git
synced 2026-08-24 01:39:36 +00:00
8 lines
149 B
PHP
8 lines
149 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetUnionStore extends SetIntersectionStore {
|
|
public function getCommandId() { return 'SUNIONSTORE'; }
|
|
}
|