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