Skip to content

Commit e8daf1a

Browse files
authored
Changed command arguments (#1330)
1 parent e831a3e commit e8daf1a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/ClientContextInterface.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
* @method $this move($key, $db)
5959
* @method $this object($subcommand, $key)
6060
* @method $this persist($key)
61-
* @method $this pexpire($key, $milliseconds)
62-
* @method $this pexpireat($key, $timestamp)
61+
* @method $this pexpire($key, $milliseconds, string $option = null)
62+
* @method $this pexpireat($key, $timestamp, string $option = null)
6363
* @method $this pttl($key)
6464
* @method $this randomkey()
6565
* @method $this rename($key, $target)
@@ -321,13 +321,13 @@
321321
* @method $this dbsize()
322322
* @method $this flushall()
323323
* @method $this flushdb()
324-
* @method $this info($section = null)
324+
* @method $this info(string ...$section = null)
325325
* @method $this lastsave()
326326
* @method $this save()
327327
* @method $this slaveof($host, $port)
328328
* @method $this slowlog($subcommand, $argument = null)
329329
* @method $this time()
330-
* @method $this command()
330+
* @method $this command($subcommand, $argument = null)
331331
* @method $this geoadd($key, $longitude, $latitude, $member)
332332
* @method $this geohash($key, array $members)
333333
* @method $this geopos($key, array $members)

src/ClientInterface.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
* @method int move(string $key, int $db)
6868
* @method mixed object($subcommand, string $key)
6969
* @method int persist(string $key)
70-
* @method int pexpire(string $key, int $milliseconds)
71-
* @method int pexpireat(string $key, int $timestamp)
70+
* @method int pexpire(string $key, int $milliseconds, string $option = null)
71+
* @method int pexpireat(string $key, int $timestamp, string $option = null)
7272
* @method int pttl(string $key)
7373
* @method string|null randomkey()
7474
* @method mixed rename(string $key, string $target)
@@ -339,13 +339,13 @@
339339
* @method int dbsize()
340340
* @method mixed flushall()
341341
* @method mixed flushdb()
342-
* @method array info($section = null)
342+
* @method array info(string ...$section = null)
343343
* @method int lastsave()
344344
* @method mixed save()
345345
* @method mixed slaveof(string $host, int $port)
346346
* @method mixed slowlog($subcommand, $argument = null)
347347
* @method array time()
348-
* @method array command()
348+
* @method array command($subcommand, $argument = null)
349349
* @method int geoadd(string $key, $longitude, $latitude, $member)
350350
* @method array geohash(string $key, array $members)
351351
* @method array geopos(string $key, array $members)

0 commit comments

Comments
 (0)