Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f865d5b

Browse files
divinity76michael-grunder
authored andcommitted
fix missing <code> tags
1 parent 0f94d9c commit f865d5b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

redis.stub.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -977,6 +977,7 @@ public function discard(): Redis|bool;
977977
/**
978978
* Dump Redis' internal binary representation of a key.
979979
*
980+
* <code>
980981
* $redis->zRange('new-zset', 0, -1, true);
981982
* </code>
982983
*
@@ -2671,6 +2672,7 @@ public function sDiffStore(string $dst, string $key, string ...$other_keys): Red
26712672
* @param string $other_keys One or more Redis SET keys.
26722673
*
26732674
* @example
2675+
* <code>
26742676
* $redis->pipeline()
26752677
* ->del('alice_likes', 'bob_likes', 'bill_likes')
26762678
* ->sadd('alice_likes', 'asparagus', 'broccoli', 'carrot', 'potato')
@@ -2695,12 +2697,12 @@ public function sInter(array|string $key, string ...$other_keys): Redis|array|fa
26952697
* @see https://redis.io/commands/sintercard
26962698
*
26972699
* @example
2700+
* <code>
26982701
* $redis->sAdd('set1', 'apple', 'pear', 'banana', 'carrot');
26992702
* $redis->sAdd('set2', 'apple', 'banana');
27002703
* $redis->sAdd('set3', 'pear', 'banana');
27012704
*
27022705
* $redis->sInterCard(['set1', 'set2', 'set3']);
2703-
* ?>
27042706
* </code>
27052707
*/
27062708
public function sintercard(array $keys, int $limit = -1): Redis|int|false;
@@ -2719,10 +2721,9 @@ public function sintercard(array $keys, int $limit = -1): Redis|int|false;
27192721
*
27202722
* @see https://redis.io/commands/sinterstore
27212723
* @see Redis::sinter()
2722-
*
2724+
* <code>
27232725
* @example $redis->sInterStore(['dst', 'src1', 'src2', 'src3']);
27242726
* @example $redis->sInterStore('dst', 'src1', 'src'2', 'src3');
2725-
* ?>
27262727
* </code>
27272728
*/
27282729
public function sInterStore(array|string $key, string ...$other_keys): Redis|int|false;
@@ -2934,7 +2935,6 @@ public function scan(null|int|string &$iterator, ?string $pattern = null, int $c
29342935
* @see https://redis.io/commands/scard
29352936
*
29362937
* @example $redis->scard('set');
2937-
* </code>
29382938
*/
29392939
public function scard(string $key): Redis|int|false;
29402940

0 commit comments

Comments
 (0)