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