mirror of
https://github.com/predis/predis.git
synced 2026-08-20 03:22:38 +00:00
14 lines
225 B
PHP
14 lines
225 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetMultiplePreserve extends SetMultiple {
|
|
public function getId() {
|
|
return 'MSETNX';
|
|
}
|
|
|
|
public function parseResponse($data) {
|
|
return (bool) $data;
|
|
}
|
|
}
|