mirror of
https://github.com/predis/predis.git
synced 2026-08-23 17:35:19 +00:00
10 lines
174 B
PHP
10 lines
174 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetDifferenceStore extends SetIntersectionStore {
|
|
public function getCommandId() { return 'SDIFFSTORE'; }
|
|
}
|