mirror of
https://github.com/predis/predis.git
synced 2026-08-24 13:39:27 +00:00
8 lines
134 B
PHP
8 lines
134 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetUnion extends SetIntersection {
|
|
public function getCommandId() { return 'SUNION'; }
|
|
}
|