mirror of
https://github.com/predis/predis.git
synced 2026-08-24 21:29:35 +00:00
10 lines
155 B
PHP
10 lines
155 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetUnion extends SetIntersection {
|
|
public function getCommandId() { return 'SUNION'; }
|
|
}
|