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

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;
}
}