mirror of
https://github.com/predis/predis.git
synced 2026-08-23 05:12:57 +00:00
8 lines
131 B
PHP
8 lines
131 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetDifference extends SetIntersection {
|
|
public function getId() { return 'SDIFF'; }
|
|
}
|