no @link tags

This commit is contained in:
Till Krüss
2023-01-17 14:04:00 -08:00
committed by Till Krüss
parent c412594217
commit f3deda22cd
207 changed files with 233 additions and 233 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ use Predis\ClientInterface;
* Abstracts the iteration of fields and values of an hash by leveraging the
* HSCAN command (Redis >= 2.8) wrapped in a fully-rewindable PHP iterator.
*
* @link http://redis.io/commands/scan
* @see http://redis.io/commands/scan
*/
class HashKey extends CursorBasedIterator
{
+1 -1
View File
@@ -18,7 +18,7 @@ use Predis\ClientInterface;
* Abstracts the iteration of the keyspace on a Redis instance by leveraging the
* SCAN command (Redis >= 2.8) wrapped in a fully-rewindable PHP iterator.
*
* @link http://redis.io/commands/scan
* @see http://redis.io/commands/scan
*/
class Keyspace extends CursorBasedIterator
{
+1 -1
View File
@@ -25,7 +25,7 @@ use Predis\NotSupportedException;
* guarantees on the returned elements because the collection can change several
* times (trimmed, deleted, overwritten) during the iteration process.
*
* @link http://redis.io/commands/lrange
* @see http://redis.io/commands/lrange
*/
class ListKey implements \Iterator
{
+1 -1
View File
@@ -18,7 +18,7 @@ use Predis\ClientInterface;
* Abstracts the iteration of members stored in a set by leveraging the SSCAN
* command (Redis >= 2.8) wrapped in a fully-rewindable PHP iterator.
*
* @link http://redis.io/commands/scan
* @see http://redis.io/commands/scan
*/
class SetKey extends CursorBasedIterator
{
+1 -1
View File
@@ -18,7 +18,7 @@ use Predis\ClientInterface;
* Abstracts the iteration of members stored in a sorted set by leveraging the
* ZSCAN command (Redis >= 2.8) wrapped in a fully-rewindable PHP iterator.
*
* @link http://redis.io/commands/scan
* @see http://redis.io/commands/scan
*/
class SortedSetKey extends CursorBasedIterator
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/append
* @see http://redis.io/commands/append
*/
class APPEND extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/auth
* @see http://redis.io/commands/auth
*/
class AUTH extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/bgrewriteaof
* @see http://redis.io/commands/bgrewriteaof
*/
class BGREWRITEAOF extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/bgsave
* @see http://redis.io/commands/bgsave
*/
class BGSAVE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/bitcount
* @see http://redis.io/commands/bitcount
*/
class BITCOUNT extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/bitfield
* @see http://redis.io/commands/bitfield
*/
class BITFIELD extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/bitop
* @see http://redis.io/commands/bitop
*/
class BITOP extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/bitpos
* @see http://redis.io/commands/bitpos
*/
class BITPOS extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/blpop
* @see http://redis.io/commands/blpop
*/
class BLPOP extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/brpop
* @see http://redis.io/commands/brpop
*/
class BRPOP extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/brpoplpush
* @see http://redis.io/commands/brpoplpush
*/
class BRPOPLPUSH extends RedisCommand
{
+1 -1
View File
@@ -13,7 +13,7 @@
namespace Predis\Command\Redis;
/**
* @link https://redis.io/commands/bzmpop/
* @see https://redis.io/commands/bzmpop/
*
* BZMPOP is the blocking variant of ZMPOP.
*/
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Redis\AbstractCommand\BZPOPBase;
/**
* @link https://redis.io/commands/bzpopmax/
* @see https://redis.io/commands/bzpopmax/
*
* BZPOPMAX is the blocking variant of the sorted set ZPOPMAX primitive.
*
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Redis\AbstractCommand\BZPOPBase;
/**
* @link https://redis.io/commands/bzpopmin/
* @see https://redis.io/commands/bzpopmin/
*
* BZPOPMIN is the blocking variant of the sorted set ZPOPMIN primitive.
*
+4 -4
View File
@@ -15,10 +15,10 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/client-list
* @link http://redis.io/commands/client-kill
* @link http://redis.io/commands/client-getname
* @link http://redis.io/commands/client-setname
* @see http://redis.io/commands/client-list
* @see http://redis.io/commands/client-kill
* @see http://redis.io/commands/client-getname
* @see http://redis.io/commands/client-setname
*/
class CLIENT extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as BaseCommand;
/**
* @link http://redis.io/commands/command
* @see http://redis.io/commands/command
*/
class COMMAND extends BaseCommand
{
+4 -4
View File
@@ -15,10 +15,10 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/config-set
* @link http://redis.io/commands/config-get
* @link http://redis.io/commands/config-resetstat
* @link http://redis.io/commands/config-rewrite
* @see http://redis.io/commands/config-set
* @see http://redis.io/commands/config-get
* @see http://redis.io/commands/config-resetstat
* @see http://redis.io/commands/config-rewrite
*/
class CONFIG extends RedisCommand
{
+1 -1
View File
@@ -16,7 +16,7 @@ use Predis\Command\Traits\DB;
use Predis\Command\Traits\Replace;
/**
* @link https://redis.io/commands/copy/
* @see https://redis.io/commands/copy/
*
* This command copies the value stored at the source key to the destination key.
*/
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/dbsize
* @see http://redis.io/commands/dbsize
*/
class DBSIZE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/decr
* @see http://redis.io/commands/decr
*/
class DECR extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/decrby
* @see http://redis.io/commands/decrby
*/
class DECRBY extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/del
* @see http://redis.io/commands/del
*/
class DEL extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/discard
* @see http://redis.io/commands/discard
*/
class DISCARD extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/dump
* @see http://redis.io/commands/dump
*/
class DUMP extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/echo
* @see http://redis.io/commands/echo
*/
class ECHO_ extends RedisCommand
{
+1 -1
View File
@@ -13,7 +13,7 @@
namespace Predis\Command\Redis;
/**
* @link http://redis.io/commands/evalsha
* @see http://redis.io/commands/evalsha
*/
class EVALSHA extends EVAL_
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/eval
* @see http://redis.io/commands/eval
*/
class EVAL_ extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/exec
* @see http://redis.io/commands/exec
*/
class EXEC extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/exists
* @see http://redis.io/commands/exists
*/
class EXISTS extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/expire
* @see http://redis.io/commands/expire
*/
class EXPIRE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/expireat
* @see http://redis.io/commands/expireat
*/
class EXPIREAT extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/flushall
* @see http://redis.io/commands/flushall
*/
class FLUSHALL extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/flushdb
* @see http://redis.io/commands/flushdb
*/
class FLUSHDB extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/geoadd
* @see http://redis.io/commands/geoadd
*/
class GEOADD extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/geodist
* @see http://redis.io/commands/geodist
*/
class GEODIST extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/geohash
* @see http://redis.io/commands/geohash
*/
class GEOHASH extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/geopos
* @see http://redis.io/commands/geopos
*/
class GEOPOS extends RedisCommand
{
+1 -1
View File
@@ -20,7 +20,7 @@ use Predis\Command\Command as RedisCommand;
* It can be replaced by GEOSEARCH and GEOSEARCHSTORE with the BYRADIUS argument
* when migrating or writing new code.
*
* @link http://redis.io/commands/georadius
* @see http://redis.io/commands/georadius
*/
class GEORADIUS extends RedisCommand
{
+1 -1
View File
@@ -18,7 +18,7 @@ namespace Predis\Command\Redis;
* It can be replaced by GEOSEARCH and GEOSEARCHSTORE with the FROMMEMBER arguments
* when migrating or writing new code.
*
* @link http://redis.io/commands/georadiusbymember
* @see http://redis.io/commands/georadiusbymember
*/
class GEORADIUSBYMEMBER extends GEORADIUS
{
+1 -1
View File
@@ -22,7 +22,7 @@ use Predis\Command\Traits\With\WithDist;
use Predis\Command\Traits\With\WithHash;
/**
* @link https://redis.io/commands/geosearch/
* @see https://redis.io/commands/geosearch/
*
* Return the members of a sorted set populated with geospatial information using GEOADD,
* which are within the borders of the area specified by a given shape.
+1 -1
View File
@@ -20,7 +20,7 @@ use Predis\Command\Traits\Sorting;
use Predis\Command\Traits\Storedist;
/**
* @link https://redis.io/commands/geosearchstore/
* @see https://redis.io/commands/geosearchstore/
*
* This command is like GEOSEARCH, but stores the result in destination key.
*/
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/get
* @see http://redis.io/commands/get
*/
class GET extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/getbit
* @see http://redis.io/commands/getbit
*/
class GETBIT extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/getrange
* @see http://redis.io/commands/getrange
*/
class GETRANGE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/getset
* @see http://redis.io/commands/getset
*/
class GETSET extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hdel
* @see http://redis.io/commands/hdel
*/
class HDEL extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hexists
* @see http://redis.io/commands/hexists
*/
class HEXISTS extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hget
* @see http://redis.io/commands/hget
*/
class HGET extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hgetall
* @see http://redis.io/commands/hgetall
*/
class HGETALL extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hincrby
* @see http://redis.io/commands/hincrby
*/
class HINCRBY extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hincrbyfloat
* @see http://redis.io/commands/hincrbyfloat
*/
class HINCRBYFLOAT extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hkeys
* @see http://redis.io/commands/hkeys
*/
class HKEYS extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hlen
* @see http://redis.io/commands/hlen
*/
class HLEN extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hmget
* @see http://redis.io/commands/hmget
*/
class HMGET extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hmset
* @see http://redis.io/commands/hmset
*/
class HMSET extends RedisCommand
{
+1 -1
View File
@@ -16,7 +16,7 @@ use Predis\Command\Command as RedisCommand;
use Predis\Command\Traits\With\WithValues;
/**
* @link https://redis.io/commands/hrandfield/
* @see https://redis.io/commands/hrandfield/
*
* When called with just the key argument, return a random field from the hash value stored at key.
*
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hscan
* @see http://redis.io/commands/hscan
*/
class HSCAN extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hset
* @see http://redis.io/commands/hset
*/
class HSET extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hsetnx
* @see http://redis.io/commands/hsetnx
*/
class HSETNX extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hstrlen
* @see http://redis.io/commands/hstrlen
*/
class HSTRLEN extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/hvals
* @see http://redis.io/commands/hvals
*/
class HVALS extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/incr
* @see http://redis.io/commands/incr
*/
class INCR extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/incrby
* @see http://redis.io/commands/incrby
*/
class INCRBY extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/incrbyfloat
* @see http://redis.io/commands/incrbyfloat
*/
class INCRBYFLOAT extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/info
* @see http://redis.io/commands/info
*/
class INFO extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/keys
* @see http://redis.io/commands/keys
*/
class KEYS extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/lastsave
* @see http://redis.io/commands/lastsave
*/
class LASTSAVE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/lindex
* @see http://redis.io/commands/lindex
*/
class LINDEX extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/linsert
* @see http://redis.io/commands/linsert
*/
class LINSERT extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/llen
* @see http://redis.io/commands/llen
*/
class LLEN extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/lpop
* @see http://redis.io/commands/lpop
*/
class LPOP extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/lpush
* @see http://redis.io/commands/lpush
*/
class LPUSH extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/lpushx
* @see http://redis.io/commands/lpushx
*/
class LPUSHX extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/lrange
* @see http://redis.io/commands/lrange
*/
class LRANGE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/lrem
* @see http://redis.io/commands/lrem
*/
class LREM extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/lset
* @see http://redis.io/commands/lset
*/
class LSET extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/ltrim
* @see http://redis.io/commands/ltrim
*/
class LTRIM extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/mget
* @see http://redis.io/commands/mget
*/
class MGET extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/migrate
* @see http://redis.io/commands/migrate
*/
class MIGRATE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/monitor
* @see http://redis.io/commands/monitor
*/
class MONITOR extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/move
* @see http://redis.io/commands/move
*/
class MOVE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/mset
* @see http://redis.io/commands/mset
*/
class MSET extends RedisCommand
{
+1 -1
View File
@@ -13,7 +13,7 @@
namespace Predis\Command\Redis;
/**
* @link http://redis.io/commands/msetnx
* @see http://redis.io/commands/msetnx
*/
class MSETNX extends MSET
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/multi
* @see http://redis.io/commands/multi
*/
class MULTI extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/object
* @see http://redis.io/commands/object
*/
class OBJECT_ extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/persist
* @see http://redis.io/commands/persist
*/
class PERSIST extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/pexpire
* @see http://redis.io/commands/pexpire
*/
class PEXPIRE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/pexpireat
* @see http://redis.io/commands/pexpireat
*/
class PEXPIREAT extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/pfadd
* @see http://redis.io/commands/pfadd
*/
class PFADD extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/pfcount
* @see http://redis.io/commands/pfcount
*/
class PFCOUNT extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/pfmerge
* @see http://redis.io/commands/pfmerge
*/
class PFMERGE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/ping
* @see http://redis.io/commands/ping
*/
class PING extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/psetex
* @see http://redis.io/commands/psetex
*/
class PSETEX extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/psubscribe
* @see http://redis.io/commands/psubscribe
*/
class PSUBSCRIBE extends RedisCommand
{
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command\Redis;
use Predis\Command\Command as RedisCommand;
/**
* @link http://redis.io/commands/pttl
* @see http://redis.io/commands/pttl
*/
class PTTL extends RedisCommand
{

Some files were not shown because too many files have changed in this diff Show More