Sha256: e0a13f272d332a08731a7e2a6fb8f0f1ac56b92dacb6c3523d6c9a74f495634d
Contents?: true
Size: 354 Bytes
Versions: 7
Compression:
Stored size: 354 Bytes
Contents
<?php namespace Predis\Commands; use Predis\Helpers; class SetRemove extends Command { public function getId() { return 'SREM'; } protected function filterArguments(Array $arguments) { return Helpers::filterVariadicValues($arguments); } public function parseResponse($data) { return (bool) $data; } }
Version data entries
7 entries across 7 versions & 1 rubygems