SetDifferenceStore.php 174 B

123456789
  1. <?php
  2. namespace Predis\Commands;
  3. use Predis\Command;
  4. class SetDifferenceStore extends SetIntersectionStore {
  5. public function getCommandId() { return 'SDIFFSTORE'; }
  6. }