mirror of
https://github.com/predis/predis.git
synced 2026-08-24 01:29:35 +00:00
16 lines
215 B
PHP
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;
|
|
}
|
|
}
|