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

9 lines
189 B
PHP

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