mirror of
https://github.com/predis/predis.git
synced 2026-08-21 04:52:04 +00:00
9 lines
192 B
PHP
9 lines
192 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class HashSetPreserve extends Command {
|
|
public function getId() { return 'HSETNX'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|