mirror of
https://github.com/predis/predis.git
synced 2026-08-23 21:09:37 +00:00
14 lines
207 B
PHP
14 lines
207 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class HashSet extends Command {
|
|
public function getId() {
|
|
return 'HSET';
|
|
}
|
|
|
|
public function parseResponse($data) {
|
|
return (bool) $data;
|
|
}
|
|
}
|