Files
predis/lib/Predis/Commands/HashSet.php
T
2011-10-18 15:51:55 +02:00

16 lines
215 B
PHP

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