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