X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Flibs%2Fredis%2FRedisConnRef.php;h=a73fac1193e3ba21c3e4eaa5777454172ad6a518;hb=f506a05aaa035b96537b33244b0f18b093048e97;hp=bbcb267791adc7ba75fa575e3c214a42df5f1050;hpb=5623d4c64319a98ddd8263c597002d173464ccbf;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/libs/redis/RedisConnRef.php b/includes/libs/redis/RedisConnRef.php index bbcb267791..a73fac1193 100644 --- a/includes/libs/redis/RedisConnRef.php +++ b/includes/libs/redis/RedisConnRef.php @@ -154,8 +154,8 @@ class RedisConnRef implements LoggerAwareInterface { * See: https://github.com/phpredis/phpredis#scan * * @param int &$iterator - * @param string $pattern - * @param int $count + * @param string|null $pattern + * @param int|null $count * @return array $res */ public function scan( &$iterator, $pattern = null, $count = null ) { @@ -169,8 +169,8 @@ class RedisConnRef implements LoggerAwareInterface { * * @param string $key * @param int &$iterator - * @param string $pattern - * @param int $count + * @param string|null $pattern + * @param int|null $count * @return array $res */ public function sScan( $key, &$iterator, $pattern = null, $count = null ) { @@ -184,8 +184,8 @@ class RedisConnRef implements LoggerAwareInterface { * * @param string $key * @param int &$iterator - * @param string $pattern - * @param int $count + * @param string|null $pattern + * @param int|null $count * @return array $res */ public function hScan( $key, &$iterator, $pattern = null, $count = null ) { @@ -199,8 +199,8 @@ class RedisConnRef implements LoggerAwareInterface { * * @param string $key * @param int &$iterator - * @param string $pattern - * @param int $count + * @param string|null $pattern + * @param int|null $count * @return array $res */ public function zScan( $key, &$iterator, $pattern = null, $count = null ) {