mirror of
https://github.com/predis/predis.git
synced 2026-08-24 03:39:39 +00:00
17 lines
245 B
PHP
17 lines
245 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class StringSetMultiplePreserve extends StringSetMultiple
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'MSETNX';
|
|
}
|
|
|
|
public function parseResponse($data)
|
|
{
|
|
return (bool) $data;
|
|
}
|
|
}
|