Просмотр исходного кода

Merge branch 'github/pr/344' into v1.1

Daniele Alessandri 8 лет назад
Родитель
Сommit
5e88200ed6
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      src/ClientContextInterface.php
  2. 1 1
      src/ClientInterface.php

+ 1 - 1
src/ClientContextInterface.php

@@ -38,7 +38,7 @@ use Predis\Command\CommandInterface;
  * @method $this append($key, $value)
  * @method $this bitcount($key, $start = null, $end = null)
  * @method $this bitop($operation, $destkey, $key)
- * @method $this bitfield($key, ...)
+ * @method $this bitfield($key, $subcommand, ...$subcommandArg)
  * @method $this decr($key)
  * @method $this decrby($key, $decrement)
  * @method $this get($key)

+ 1 - 1
src/ClientInterface.php

@@ -46,7 +46,7 @@ use Predis\Profile\ProfileInterface;
  * @method int    append($key, $value)
  * @method int    bitcount($key, $start = null, $end = null)
  * @method int    bitop($operation, $destkey, $key)
- * @method array  bitfield($key, ...)
+ * @method array  bitfield($key, $subcommand, ...$subcommandArg)
  * @method int    decr($key)
  * @method int    decrby($key, $decrement)
  * @method string get($key)