Skip to content

Commit 577bd39

Browse files
authored
ClientInterface: using set with NX flag can return null (#1394)
Calling `$client->set('key', '1', 'EX', 7200, 'NX')` for a key that is already set will return null instead of Status
1 parent 6372661 commit 577bd39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ClientInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
* @method mixed mset(array $dictionary)
156156
* @method int msetnx(array $dictionary)
157157
* @method Status psetex(string $key, $milliseconds, $value)
158-
* @method Status set(string $key, $value, $expireResolution = null, $expireTTL = null, $flag = null)
158+
* @method Status|null set(string $key, $value, $expireResolution = null, $expireTTL = null, $flag = null)
159159
* @method int setbit(string $key, $offset, $value)
160160
* @method Status setex(string $key, $seconds, $value)
161161
* @method int setnx(string $key, $value)

0 commit comments

Comments
 (0)