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