Files
predis/lib/Predis/Commands/SetRemoveV24x.php
T
2011-05-05 17:30:05 +02:00

20 lines
358 B
PHP

<?php
namespace Predis\Commands;
use Predis\Helpers;
class SetRemoveV24x extends Command {
public function getId() {
return 'SREM';
}
protected function filterArguments(Array $arguments) {
return Helpers::filterVariadicValues($arguments);
}
public function parseResponse($data) {
return (bool) $data;
}
}