mirror of
https://github.com/predis/predis.git
synced 2026-08-21 21:00:57 +00:00
12 lines
281 B
PHP
12 lines
281 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetMultiplePreserve extends SetMultiple {
|
|
public function canBeHashed() { return false; }
|
|
public function getCommandId() { return 'MSETNX'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|