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

14 lines
217 B
PHP

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