mirror of
https://github.com/predis/predis.git
synced 2026-08-25 21:29:42 +00:00
11 lines
212 B
PHP
11 lines
212 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetRemove extends Command {
|
|
public function getCommandId() { return 'SREM'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|