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