Skip to content

Commit

Permalink
Merge ukko/phpredis-phpdoc#62 to 64 to avoid regressions after #643
Browse files Browse the repository at this point in the history
  • Loading branch information
Leneshka-jb committed Aug 8, 2019
1 parent 21af6cc commit fd6517b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions redis/Redis.php
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ public function unlink($key1, $key2 = null, $key3 = null)
* a Redis::PIPELINE block is simply transmitted faster to the server, but without any guarantee of atomicity.
* discard cancels a transaction.
*
* @return resource Redis returns the Redis instance and enters multi-mode.
* @return Redis returns the Redis instance and enters multi-mode.
* Once in multi-mode, all subsequent method calls return the same object until exec() is called.
*
* @link https://redis.io/commands/multi
Expand Down Expand Up @@ -3388,10 +3388,10 @@ public function zUnionStore($output, $zSetKeys, array $weights = null, $aggregat
* @see zUnionStore
* @deprecated use Redis::zUnionStore()
*
* @param $Output
* @param $ZSetKeys
* @param string $Output
* @param array $ZSetKeys
* @param array|null $Weights
* @param string $aggregateFunction
* @param string $aggregateFunction
*/
public function zUnion($Output, $ZSetKeys, array $Weights = null, $aggregateFunction = 'SUM')
{
Expand Down Expand Up @@ -4548,7 +4548,7 @@ public function time()
* @example
* <pre>
* $iterator = null;
* while($keys = $redis->scan($iterator)) {
* while(false !== ($keys = $redis->scan($iterator))) {
* foreach($keys as $key) {
* echo $key . PHP_EOL;
* }
Expand Down

0 comments on commit fd6517b

Please sign in to comment.