1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Predis\Command;
- class StringSetMultiplePreserve extends StringSetMultiple
- {
-
- public function getId()
- {
- return 'MSETNX';
- }
-
- public function parseResponse($data)
- {
- return (bool) $data;
- }
- }
|