mirror of
https://github.com/predis/predis.git
synced 2026-08-20 00:32:14 +00:00
10 lines
154 B
PHP
10 lines
154 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetUnionStore extends SetIntersectionStore {
|
|
public function getId() {
|
|
return 'SUNIONSTORE';
|
|
}
|
|
}
|