mirror of
https://github.com/predis/predis.git
synced 2026-08-23 12:24:27 +00:00
8 lines
153 B
PHP
8 lines
153 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetDifferenceStore extends SetIntersectionStore {
|
|
public function getCommandId() { return 'SDIFFSTORE'; }
|
|
}
|