mirror of
https://github.com/predis/predis.git
synced 2026-08-24 21:49:33 +00:00
10 lines
159 B
PHP
10 lines
159 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetDifference extends SetIntersection {
|
|
public function getCommandId() { return 'SDIFF'; }
|
|
}
|