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