|
74 | 74 | * @method string|null randomkey()
|
75 | 75 | * @method mixed rename(string $key, string $target)
|
76 | 76 | * @method int renamenx(string $key, string $target)
|
77 |
| - * @method array scan($cursor, array $options = null) |
78 |
| - * @method array sort(string $key, array $options = null) |
| 77 | + * @method array scan($cursor, ?array $options = null) |
| 78 | + * @method array sort(string $key, ?array $options = null) |
79 | 79 | * @method array sort_ro(string $key, ?string $byPattern = null, ?LimitOffsetCount $limit = null, array $getPatterns = [], ?string $sorting = null, bool $alpha = false)
|
80 | 80 | * @method int ttl(string $key)
|
81 | 81 | * @method mixed type(string $key)
|
|
172 | 172 | * @method array hmget(string $key, array $fields)
|
173 | 173 | * @method mixed hmset(string $key, array $dictionary)
|
174 | 174 | * @method array hrandfield(string $key, int $count = 1, bool $withValues = false)
|
175 |
| - * @method array hscan(string $key, $cursor, array $options = null) |
| 175 | + * @method array hscan(string $key, $cursor, ?array $options = null) |
176 | 176 | * @method int hset(string $key, string $field, string $value)
|
177 | 177 | * @method int hsetnx(string $key, string $field, string $value)
|
178 | 178 | * @method array hvals(string $key)
|
|
231 | 231 | * @method string[] smembers(string $key)
|
232 | 232 | * @method array smismember(string $key, string ...$members)
|
233 | 233 | * @method int smove(string $source, string $destination, string $member)
|
234 |
| - * @method string|array|null spop(string $key, int $count = null) |
235 |
| - * @method string|null srandmember(string $key, int $count = null) |
| 234 | + * @method string|array|null spop(string $key, ?int $count = null) |
| 235 | + * @method string|null srandmember(string $key, ?int $count = null) |
236 | 236 | * @method int srem(string $key, array|string $member)
|
237 |
| - * @method array sscan(string $key, int $cursor, array $options = null) |
| 237 | + * @method array sscan(string $key, int $cursor, ?array $options = null) |
238 | 238 | * @method string[] sunion(array|string $keys)
|
239 | 239 | * @method int sunionstore(string $destination, array|string $keys)
|
240 | 240 | * @method int touch(string[]|string $keyOrKeys, string ...$keys = null)
|
|
265 | 265 | * @method int tsdecrby(string $key, float $value, ?DecrByArguments $arguments = null)
|
266 | 266 | * @method int tsdel(string $key, int $fromTimestamp, int $toTimestamp)
|
267 | 267 | * @method Status tsdeleterule(string $sourceKey, string $destKey)
|
268 |
| - * @method array tsget(string $key, GetArguments $arguments = null) |
| 268 | + * @method array tsget(string $key, ?GetArguments $arguments = null) |
269 | 269 | * @method int tsincrby(string $key, float $value, ?IncrByArguments $arguments = null)
|
270 | 270 | * @method array tsinfo(string $key, ?InfoArguments $arguments = null)
|
271 | 271 | * @method array tsmadd(mixed ...$keyTimestampValue)
|
|
275 | 275 | * @method array tsqueryindex(string ...$filterExpression)
|
276 | 276 | * @method array tsrange(string $key, $fromTimestamp, $toTimestamp, ?RangeArguments $arguments = null)
|
277 | 277 | * @method array tsrevrange(string $key, $fromTimestamp, $toTimestamp, ?RangeArguments $arguments = null)
|
278 |
| - * @method string xadd(string $key, array $dictionary, string $id = '*', array $options = null) |
| 278 | + * @method string xadd(string $key, array $dictionary, string $id = '*', ?array $options = null) |
279 | 279 | * @method int xdel(string $key, string ...$id)
|
280 | 280 | * @method int xlen(string $key)
|
281 | 281 | * @method array xrevrange(string $key, string $end, string $start, ?int $count = null)
|
282 | 282 | * @method array xrange(string $key, string $start, string $end, ?int $count = null)
|
283 |
| - * @method string xtrim(string $key, array|string $strategy, string $threshold, array $options = null) |
| 283 | + * @method string xtrim(string $key, array|string $strategy, string $threshold, ?array $options = null) |
284 | 284 | * @method int zadd(string $key, array $membersAndScoresDictionary)
|
285 | 285 | * @method int zcard(string $key)
|
286 | 286 | * @method string zcount(string $key, int|string $min, int|string $max)
|
|
295 | 295 | * @method array zpopmin(string $key, int $count = 1)
|
296 | 296 | * @method array zpopmax(string $key, int $count = 1)
|
297 | 297 | * @method mixed zrandmember(string $key, int $count = 1, bool $withScores = false)
|
298 |
| - * @method array zrange(string $key, int|string $start, int|string $stop, array $options = null) |
299 |
| - * @method array zrangebyscore(string $key, int|string $min, int|string $max, array $options = null) |
| 298 | + * @method array zrange(string $key, int|string $start, int|string $stop, ?array $options = null) |
| 299 | + * @method array zrangebyscore(string $key, int|string $min, int|string $max, ?array $options = null) |
300 | 300 | * @method int zrangestore(string $destination, string $source, int|string $min, int|string $max, string|bool $by = false, bool $reversed = false, bool $limit = false, int $offset = 0, int $count = 0)
|
301 | 301 | * @method int|null zrank(string $key, string $member)
|
302 | 302 | * @method int zrem(string $key, string ...$member)
|
303 | 303 | * @method int zremrangebyrank(string $key, int|string $start, int|string $stop)
|
304 | 304 | * @method int zremrangebyscore(string $key, int|string $min, int|string $max)
|
305 |
| - * @method array zrevrange(string $key, int|string $start, int|string $stop, array $options = null) |
306 |
| - * @method array zrevrangebyscore(string $key, int|string $max, int|string $min, array $options = null) |
| 305 | + * @method array zrevrange(string $key, int|string $start, int|string $stop, ?array $options = null) |
| 306 | + * @method array zrevrangebyscore(string $key, int|string $max, int|string $min, ?array $options = null) |
307 | 307 | * @method int|null zrevrank(string $key, string $member)
|
308 | 308 | * @method array zunion(array $keys, int[] $weights = [], string $aggregate = 'sum', bool $withScores = false)
|
309 | 309 | * @method int zunionstore(string $destination, array $keys, int[] $weights = [], string $aggregate = 'sum')
|
310 | 310 | * @method string|null zscore(string $key, string $member)
|
311 |
| - * @method array zscan(string $key, int $cursor, array $options = null) |
312 |
| - * @method array zrangebylex(string $key, string $start, string $stop, array $options = null) |
313 |
| - * @method array zrevrangebylex(string $key, string $start, string $stop, array $options = null) |
| 311 | + * @method array zscan(string $key, int $cursor, ?array $options = null) |
| 312 | + * @method array zrangebylex(string $key, string $start, string $stop, ?array $options = null) |
| 313 | + * @method array zrevrangebylex(string $key, string $start, string $stop, ?array $options = null) |
314 | 314 | * @method int zremrangebylex(string $key, string $min, string $max)
|
315 | 315 | * @method int zlexcount(string $key, string $min, string $max)
|
316 | 316 | * @method int pexpiretime(string $key)
|
|
330 | 330 | * @method mixed evalsha(string $script, int $numkeys, string ...$keyOrArg = null)
|
331 | 331 | * @method mixed evalsha_ro(string $sha1, array $keys, ...$argument)
|
332 | 332 | * @method mixed script($subcommand, $argument = null)
|
333 |
| - * @method Status shutdown(bool $noSave = null, bool $now = false, bool $force = false, bool $abort = false) |
| 333 | + * @method Status shutdown(?bool $noSave = null, bool $now = false, bool $force = false, bool $abort = false) |
334 | 334 | * @method mixed auth(string $password)
|
335 | 335 | * @method string echo(string $message)
|
336 |
| - * @method mixed ping(string $message = null) |
| 336 | + * @method mixed ping(?string $message = null) |
337 | 337 | * @method mixed select(int $database)
|
338 | 338 | * @method mixed bgrewriteaof()
|
339 | 339 | * @method mixed bgsave()
|
|
353 | 353 | * @method array geohash(string $key, array $members)
|
354 | 354 | * @method array geopos(string $key, array $members)
|
355 | 355 | * @method string|null geodist(string $key, $member1, $member2, $unit = null)
|
356 |
| - * @method array georadius(string $key, $longitude, $latitude, $radius, $unit, array $options = null) |
357 |
| - * @method array georadiusbymember(string $key, $member, $radius, $unit, array $options = null) |
| 356 | + * @method array georadius(string $key, $longitude, $latitude, $radius, $unit, ?array $options = null) |
| 357 | + * @method array georadiusbymember(string $key, $member, $radius, $unit, ?array $options = null) |
358 | 358 | * @method array geosearch(string $key, FromInterface $from, ByInterface $by, ?string $sorting = null, int $count = -1, bool $any = false, bool $withCoord = false, bool $withDist = false, bool $withHash = false)
|
359 | 359 | * @method int geosearchstore(string $destination, string $source, FromInterface $from, ByInterface $by, ?string $sorting = null, int $count = -1, bool $any = false, bool $storeDist = false)
|
360 | 360 | *
|
|
0 commit comments