@@ -270,7 +270,7 @@ public function delete( $key1, $key2 = null, $key3 = null ) {}
270
270
/**
271
271
* Enter and exit transactional mode.
272
272
*
273
- * @internal param Redis::MULTI|Redis::PIPELINE
273
+ * @param int Redis::MULTI|Redis::PIPELINE
274
274
* Defaults to Redis::MULTI.
275
275
* A Redis::MULTI block of commands runs as a single transaction;
276
276
* a Redis::PIPELINE block is simply transmitted faster to the server, but without any guarantee of atomicity.
@@ -294,7 +294,7 @@ public function delete( $key1, $key2 = null, $key3 = null ) {}
294
294
* // 3 => 'val2');
295
295
* </pre>
296
296
*/
297
- public function multi ( ) {}
297
+ public function multi ( $ mode = Redis:: MULTI ) {}
298
298
299
299
/**
300
300
* @see multi()
@@ -760,7 +760,6 @@ public function lLen( $key ) {}
760
760
/**
761
761
* @see lLen()
762
762
* @param string $key
763
- * @param int $index
764
763
* @link http://redis.io/commands/llen
765
764
*/
766
765
public function lSize ( $ key ) {}
@@ -1511,7 +1510,7 @@ public function expire( $key, $ttl ) {}
1511
1510
* Sets an expiration date (a timeout in milliseconds) on an item.
1512
1511
*
1513
1512
* @param string $key The key that will disappear.
1514
- * @param int $pttl The key's remaining Time To Live, in milliseconds.
1513
+ * @param int $ttl The key's remaining Time To Live, in milliseconds.
1515
1514
* @return bool: TRUE in case of success, FALSE in case of failure.
1516
1515
* @link http://redis.io/commands/pexpire
1517
1516
* @example
@@ -1885,6 +1884,7 @@ public function bitCount( $key ) {}
1885
1884
* @param string $retKey return key
1886
1885
* @param string $key1
1887
1886
* @param string $key2
1887
+ * @param string $key3
1888
1888
* @return int The size of the string stored in the destination key.
1889
1889
* @link http://redis.io/commands/bitop
1890
1890
* @example
@@ -3255,7 +3255,7 @@ public function _hosts() {}
3255
3255
public function _function () {}
3256
3256
3257
3257
/**
3258
- * @param string key The key for which you want to lookup the host
3258
+ * @param string $ key The key for which you want to lookup the host
3259
3259
* @return string the host to be used for a certain key
3260
3260
*/
3261
3261
public function _target ($ key ) {}
0 commit comments