Files
predis/lib/Predis/Commands/SetRemove.php
T

9 lines
191 B
PHP

<?php
namespace Predis\Commands;
class SetRemove extends Command {
public function getCommandId() { return 'SREM'; }
public function parseResponse($data) { return (bool) $data; }
}