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