diff --git a/README.md b/README.md index 91dd9a79..92c7c8ff 100644 --- a/README.md +++ b/README.md @@ -479,8 +479,8 @@ found [on its actions page](https://github.com/predis/predis/actions). ### Author ### -- [Daniele Alessandri](mailto:suppakilla@gmail.com) ([twitter](http://twitter.com/JoL1hAHN)) - [Till Krüss](https://till.im) ([Twitter](http://twitter.com/tillkruss)) +- [Daniele Alessandri](mailto:suppakilla@gmail.com) ([twitter](http://twitter.com/JoL1hAHN)) ### License ### diff --git a/src/Client.php b/src/Client.php index 14d75a18..48f2282c 100644 --- a/src/Client.php +++ b/src/Client.php @@ -38,8 +38,6 @@ use Predis\Transaction\MultiExec as MultiExecTransaction; * one with its own responsibility and scope. * * @template-implements \IteratorAggregate - * - * @author Daniele Alessandri */ class Client implements ClientInterface, \IteratorAggregate { diff --git a/src/ClientContextInterface.php b/src/ClientContextInterface.php index 97f7fac6..7541e24b 100644 --- a/src/ClientContextInterface.php +++ b/src/ClientContextInterface.php @@ -192,8 +192,6 @@ use Predis\Command\CommandInterface; * @method $this georadiusbymember($key, $member, $radius, $unit, array $options = null) * @method $this geosearch(string $key, FromInterface $from, ByInterface $by, ?string $sorting = null, int $count = -1, bool $any = false, bool $withCoord = false, bool $withDist = false, bool $withHash = false) * @method $this geosearchstore(string $destination, string $source, FromInterface $from, ByInterface $by, ?string $sorting = null, int $count = -1, bool $any = false, bool $storeDist = false) - * - * @author Daniele Alessandri */ interface ClientContextInterface { diff --git a/src/ClientException.php b/src/ClientException.php index 15e44df9..e52ab024 100644 --- a/src/ClientException.php +++ b/src/ClientException.php @@ -14,8 +14,6 @@ namespace Predis; /** * Exception class that identifies client-side errors. - * - * @author Daniele Alessandri */ class ClientException extends PredisException { diff --git a/src/ClientInterface.php b/src/ClientInterface.php index 98beb463..b3d396cd 100644 --- a/src/ClientInterface.php +++ b/src/ClientInterface.php @@ -210,8 +210,6 @@ use Predis\Response\Status; * @method array georadiusbymember(string $key, $member, $radius, $unit, array $options = null) * @method array geosearch(string $key, FromInterface $from, ByInterface $by, ?string $sorting = null, int $count = -1, bool $any = false, bool $withCoord = false, bool $withDist = false, bool $withHash = false) * @method int geosearchstore(string $destination, string $source, FromInterface $from, ByInterface $by, ?string $sorting = null, int $count = -1, bool $any = false, bool $storeDist = false) - * - * @author Daniele Alessandri */ interface ClientInterface { diff --git a/src/Cluster/ClusterStrategy.php b/src/Cluster/ClusterStrategy.php index 34035d2a..48b35c49 100644 --- a/src/Cluster/ClusterStrategy.php +++ b/src/Cluster/ClusterStrategy.php @@ -17,8 +17,6 @@ use Predis\Command\ScriptCommand; /** * Common class implementing the logic needed to support clustering strategies. - * - * @author Daniele Alessandri */ abstract class ClusterStrategy implements StrategyInterface { diff --git a/src/Cluster/Distributor/DistributorInterface.php b/src/Cluster/Distributor/DistributorInterface.php index 3b6b4895..593d9bb3 100644 --- a/src/Cluster/Distributor/DistributorInterface.php +++ b/src/Cluster/Distributor/DistributorInterface.php @@ -17,8 +17,6 @@ use Predis\Cluster\Hash\HashGeneratorInterface; /** * A distributor implements the logic to automatically distribute keys among * several nodes for client-side sharding. - * - * @author Daniele Alessandri */ interface DistributorInterface { diff --git a/src/Cluster/Distributor/EmptyRingException.php b/src/Cluster/Distributor/EmptyRingException.php index b0aafd82..b919ea3b 100644 --- a/src/Cluster/Distributor/EmptyRingException.php +++ b/src/Cluster/Distributor/EmptyRingException.php @@ -14,8 +14,6 @@ namespace Predis\Cluster\Distributor; /** * Exception class that identifies empty rings. - * - * @author Daniele Alessandri */ class EmptyRingException extends \Exception { diff --git a/src/Cluster/Distributor/HashRing.php b/src/Cluster/Distributor/HashRing.php index 0d44f1a5..a9976957 100644 --- a/src/Cluster/Distributor/HashRing.php +++ b/src/Cluster/Distributor/HashRing.php @@ -18,8 +18,6 @@ use Predis\Cluster\Hash\HashGeneratorInterface; * This class implements an hashring-based distributor that uses the same * algorithm of memcache to distribute keys in a cluster using client-side * sharding. - * - * @author Daniele Alessandri * @author Lorenzo Castelli */ class HashRing implements DistributorInterface, HashGeneratorInterface diff --git a/src/Cluster/Distributor/KetamaRing.php b/src/Cluster/Distributor/KetamaRing.php index c3be2856..ca17ec5d 100644 --- a/src/Cluster/Distributor/KetamaRing.php +++ b/src/Cluster/Distributor/KetamaRing.php @@ -16,8 +16,6 @@ namespace Predis\Cluster\Distributor; * This class implements an hashring-based distributor that uses the same * algorithm of libketama to distribute keys in a cluster using client-side * sharding. - * - * @author Daniele Alessandri * @author Lorenzo Castelli */ class KetamaRing extends HashRing diff --git a/src/Cluster/Hash/CRC16.php b/src/Cluster/Hash/CRC16.php index 0a3b4cb2..2c2a5985 100644 --- a/src/Cluster/Hash/CRC16.php +++ b/src/Cluster/Hash/CRC16.php @@ -14,8 +14,6 @@ namespace Predis\Cluster\Hash; /** * Hash generator implementing the CRC-CCITT-16 algorithm used by redis-cluster. - * - * @author Daniele Alessandri */ class CRC16 implements HashGeneratorInterface { diff --git a/src/Cluster/Hash/HashGeneratorInterface.php b/src/Cluster/Hash/HashGeneratorInterface.php index 6c1b9f81..c835c0e6 100644 --- a/src/Cluster/Hash/HashGeneratorInterface.php +++ b/src/Cluster/Hash/HashGeneratorInterface.php @@ -15,8 +15,6 @@ namespace Predis\Cluster\Hash; /** * An hash generator implements the logic used to calculate the hash of a key to * distribute operations among Redis nodes. - * - * @author Daniele Alessandri */ interface HashGeneratorInterface { diff --git a/src/Cluster/Hash/PhpiredisCRC16.php b/src/Cluster/Hash/PhpiredisCRC16.php index b84291bc..cf51dc3f 100644 --- a/src/Cluster/Hash/PhpiredisCRC16.php +++ b/src/Cluster/Hash/PhpiredisCRC16.php @@ -16,8 +16,6 @@ use Predis\NotSupportedException; /** * Hash generator implementing the CRC-CCITT-16 algorithm used by redis-cluster. - * - * @author Daniele Alessandri */ class PhpiredisCRC16 implements HashGeneratorInterface { diff --git a/src/Cluster/PredisStrategy.php b/src/Cluster/PredisStrategy.php index 66a18e6b..574b86f9 100644 --- a/src/Cluster/PredisStrategy.php +++ b/src/Cluster/PredisStrategy.php @@ -17,8 +17,6 @@ use Predis\Cluster\Distributor\HashRing; /** * Default cluster strategy used by Predis to handle client-side sharding. - * - * @author Daniele Alessandri */ class PredisStrategy extends ClusterStrategy { diff --git a/src/Cluster/RedisStrategy.php b/src/Cluster/RedisStrategy.php index c7a0f9fc..8ae5c0f5 100644 --- a/src/Cluster/RedisStrategy.php +++ b/src/Cluster/RedisStrategy.php @@ -19,8 +19,6 @@ use Predis\NotSupportedException; /** * Default class used by Predis to calculate hashes out of keys of * commands supported by redis-cluster. - * - * @author Daniele Alessandri */ class RedisStrategy extends ClusterStrategy { diff --git a/src/Cluster/StrategyInterface.php b/src/Cluster/StrategyInterface.php index da7162a2..9cfbc269 100644 --- a/src/Cluster/StrategyInterface.php +++ b/src/Cluster/StrategyInterface.php @@ -20,8 +20,6 @@ use Predis\Command\CommandInterface; * keys extracted from supported commands. * * This is mostly useful to support clustering via client-side sharding. - * - * @author Daniele Alessandri */ interface StrategyInterface { diff --git a/src/Collection/Iterator/CursorBasedIterator.php b/src/Collection/Iterator/CursorBasedIterator.php index b1dc0e94..53166d1f 100644 --- a/src/Collection/Iterator/CursorBasedIterator.php +++ b/src/Collection/Iterator/CursorBasedIterator.php @@ -25,8 +25,6 @@ use Predis\NotSupportedException; * can change several times during the iteration process. * * @see http://redis.io/commands/scan - * - * @author Daniele Alessandri */ abstract class CursorBasedIterator implements \Iterator { diff --git a/src/Collection/Iterator/HashKey.php b/src/Collection/Iterator/HashKey.php index 747db2ed..10dd6058 100644 --- a/src/Collection/Iterator/HashKey.php +++ b/src/Collection/Iterator/HashKey.php @@ -18,8 +18,6 @@ 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. * - * @author Daniele Alessandri - * * @link http://redis.io/commands/scan */ class HashKey extends CursorBasedIterator diff --git a/src/Collection/Iterator/Keyspace.php b/src/Collection/Iterator/Keyspace.php index f42a9eb8..5505ed3b 100644 --- a/src/Collection/Iterator/Keyspace.php +++ b/src/Collection/Iterator/Keyspace.php @@ -18,8 +18,6 @@ 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. * - * @author Daniele Alessandri - * * @link http://redis.io/commands/scan */ class Keyspace extends CursorBasedIterator diff --git a/src/Collection/Iterator/ListKey.php b/src/Collection/Iterator/ListKey.php index 45c72666..f1ae2c1a 100644 --- a/src/Collection/Iterator/ListKey.php +++ b/src/Collection/Iterator/ListKey.php @@ -25,8 +25,6 @@ use Predis\NotSupportedException; * guarantees on the returned elements because the collection can change several * times (trimmed, deleted, overwritten) during the iteration process. * - * @author Daniele Alessandri - * * @link http://redis.io/commands/lrange */ class ListKey implements \Iterator diff --git a/src/Collection/Iterator/SetKey.php b/src/Collection/Iterator/SetKey.php index 7e031222..833b462b 100644 --- a/src/Collection/Iterator/SetKey.php +++ b/src/Collection/Iterator/SetKey.php @@ -18,8 +18,6 @@ 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. * - * @author Daniele Alessandri - * * @link http://redis.io/commands/scan */ class SetKey extends CursorBasedIterator diff --git a/src/Collection/Iterator/SortedSetKey.php b/src/Collection/Iterator/SortedSetKey.php index ca7d8eda..09bf539b 100644 --- a/src/Collection/Iterator/SortedSetKey.php +++ b/src/Collection/Iterator/SortedSetKey.php @@ -18,8 +18,6 @@ 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. * - * @author Daniele Alessandri - * * @link http://redis.io/commands/scan */ class SortedSetKey extends CursorBasedIterator diff --git a/src/Command/Command.php b/src/Command/Command.php index e2b610be..0e08e4b4 100644 --- a/src/Command/Command.php +++ b/src/Command/Command.php @@ -14,8 +14,6 @@ namespace Predis\Command; /** * Base class for Redis commands. - * - * @author Daniele Alessandri */ abstract class Command implements CommandInterface { diff --git a/src/Command/CommandInterface.php b/src/Command/CommandInterface.php index df0ba405..20480316 100644 --- a/src/Command/CommandInterface.php +++ b/src/Command/CommandInterface.php @@ -14,8 +14,6 @@ namespace Predis\Command; /** * Defines an abstraction representing a Redis command. - * - * @author Daniele Alessandri */ interface CommandInterface { diff --git a/src/Command/Factory.php b/src/Command/Factory.php index b86c8cf2..9d89abbe 100644 --- a/src/Command/Factory.php +++ b/src/Command/Factory.php @@ -21,8 +21,6 @@ use Predis\Command\Processor\ProcessorInterface; * This class provides all of the common functionalities required for a command * factory to create new instances of Redis commands objects. It also allows to * define or undefine command handler classes for each command ID. - * - * @author Daniele Alessandri */ abstract class Factory implements FactoryInterface { diff --git a/src/Command/FactoryInterface.php b/src/Command/FactoryInterface.php index 53b562c7..48c8a08f 100644 --- a/src/Command/FactoryInterface.php +++ b/src/Command/FactoryInterface.php @@ -18,8 +18,6 @@ namespace Predis\Command; * A command factory is used through the library to create instances of commands * classes implementing Predis\Command\CommandInterface mapped to Redis commands * by their command ID string (SET, GET, etc...). - * - * @author Daniele Alessandri */ interface FactoryInterface { diff --git a/src/Command/PrefixableCommandInterface.php b/src/Command/PrefixableCommandInterface.php index cc7cd8d1..66b5d19c 100644 --- a/src/Command/PrefixableCommandInterface.php +++ b/src/Command/PrefixableCommandInterface.php @@ -14,8 +14,6 @@ namespace Predis\Command; /** * Defines a command whose keys can be prefixed. - * - * @author Daniele Alessandri */ interface PrefixableCommandInterface extends CommandInterface { diff --git a/src/Command/Processor/KeyPrefixProcessor.php b/src/Command/Processor/KeyPrefixProcessor.php index eb4fe4d0..90cdf22f 100644 --- a/src/Command/Processor/KeyPrefixProcessor.php +++ b/src/Command/Processor/KeyPrefixProcessor.php @@ -18,8 +18,6 @@ use Predis\Command\PrefixableCommandInterface; /** * Command processor capable of prefixing keys stored in the arguments of Redis * commands supported. - * - * @author Daniele Alessandri */ class KeyPrefixProcessor implements ProcessorInterface { diff --git a/src/Command/Processor/ProcessorChain.php b/src/Command/Processor/ProcessorChain.php index 13a8eec0..553c01dc 100644 --- a/src/Command/Processor/ProcessorChain.php +++ b/src/Command/Processor/ProcessorChain.php @@ -16,8 +16,6 @@ use Predis\Command\CommandInterface; /** * Default implementation of a command processors chain. - * - * @author Daniele Alessandri */ class ProcessorChain implements \ArrayAccess, ProcessorInterface { diff --git a/src/Command/Processor/ProcessorInterface.php b/src/Command/Processor/ProcessorInterface.php index 6b830f68..f915b9eb 100644 --- a/src/Command/Processor/ProcessorInterface.php +++ b/src/Command/Processor/ProcessorInterface.php @@ -16,8 +16,6 @@ use Predis\Command\CommandInterface; /** * A command processor processes Redis commands before they are sent to Redis. - * - * @author Daniele Alessandri */ interface ProcessorInterface { diff --git a/src/Command/RawCommand.php b/src/Command/RawCommand.php index f104db06..f6b95b05 100644 --- a/src/Command/RawCommand.php +++ b/src/Command/RawCommand.php @@ -22,8 +22,6 @@ namespace Predis\Command; * of Predis\Client or managing internals like Redis Sentinel or Cluster as they * are not potentially subject to hijacking from third party libraries when they * override command handlers for standard Redis commands. - * - * @author Daniele Alessandri */ final class RawCommand implements CommandInterface { diff --git a/src/Command/RawFactory.php b/src/Command/RawFactory.php index e3b7282e..2c0637f2 100644 --- a/src/Command/RawFactory.php +++ b/src/Command/RawFactory.php @@ -22,8 +22,6 @@ namespace Predis\Command; * When using this factory the client does not process arguments before sending * commands to Redis and server responses are not further processed before being * returned to the caller. - * - * @author Daniele Alessandri */ class RawFactory implements FactoryInterface { diff --git a/src/Command/Redis/APPEND.php b/src/Command/Redis/APPEND.php index 43b2fe81..b433fe7e 100644 --- a/src/Command/Redis/APPEND.php +++ b/src/Command/Redis/APPEND.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/append - * - * @author Daniele Alessandri */ class APPEND extends RedisCommand { diff --git a/src/Command/Redis/AUTH.php b/src/Command/Redis/AUTH.php index 4db00edb..c88ca18a 100644 --- a/src/Command/Redis/AUTH.php +++ b/src/Command/Redis/AUTH.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/auth - * - * @author Daniele Alessandri */ class AUTH extends RedisCommand { diff --git a/src/Command/Redis/BGREWRITEAOF.php b/src/Command/Redis/BGREWRITEAOF.php index 527eae31..37d2c5c2 100644 --- a/src/Command/Redis/BGREWRITEAOF.php +++ b/src/Command/Redis/BGREWRITEAOF.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/bgrewriteaof - * - * @author Daniele Alessandri */ class BGREWRITEAOF extends RedisCommand { diff --git a/src/Command/Redis/BGSAVE.php b/src/Command/Redis/BGSAVE.php index 76972f5d..ca4ed9bf 100644 --- a/src/Command/Redis/BGSAVE.php +++ b/src/Command/Redis/BGSAVE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/bgsave - * - * @author Daniele Alessandri */ class BGSAVE extends RedisCommand { diff --git a/src/Command/Redis/BITCOUNT.php b/src/Command/Redis/BITCOUNT.php index e7127c27..908b0a20 100644 --- a/src/Command/Redis/BITCOUNT.php +++ b/src/Command/Redis/BITCOUNT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/bitcount - * - * @author Daniele Alessandri */ class BITCOUNT extends RedisCommand { diff --git a/src/Command/Redis/BITFIELD.php b/src/Command/Redis/BITFIELD.php index 422132fe..0e5303af 100644 --- a/src/Command/Redis/BITFIELD.php +++ b/src/Command/Redis/BITFIELD.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/bitfield - * - * @author Daniele Alessandri */ class BITFIELD extends RedisCommand { diff --git a/src/Command/Redis/BITOP.php b/src/Command/Redis/BITOP.php index 9570c8ad..a97edbc8 100644 --- a/src/Command/Redis/BITOP.php +++ b/src/Command/Redis/BITOP.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/bitop - * - * @author Daniele Alessandri */ class BITOP extends RedisCommand { diff --git a/src/Command/Redis/BITPOS.php b/src/Command/Redis/BITPOS.php index 97015cf0..7484ee3d 100644 --- a/src/Command/Redis/BITPOS.php +++ b/src/Command/Redis/BITPOS.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/bitpos - * - * @author Daniele Alessandri */ class BITPOS extends RedisCommand { diff --git a/src/Command/Redis/BLPOP.php b/src/Command/Redis/BLPOP.php index bc4ba35b..c08071e9 100644 --- a/src/Command/Redis/BLPOP.php +++ b/src/Command/Redis/BLPOP.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/blpop - * - * @author Daniele Alessandri */ class BLPOP extends RedisCommand { diff --git a/src/Command/Redis/BRPOP.php b/src/Command/Redis/BRPOP.php index 0c69037a..b2c017ad 100644 --- a/src/Command/Redis/BRPOP.php +++ b/src/Command/Redis/BRPOP.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/brpop - * - * @author Daniele Alessandri */ class BRPOP extends RedisCommand { diff --git a/src/Command/Redis/BRPOPLPUSH.php b/src/Command/Redis/BRPOPLPUSH.php index 6a7f6ca4..1d411258 100644 --- a/src/Command/Redis/BRPOPLPUSH.php +++ b/src/Command/Redis/BRPOPLPUSH.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/brpoplpush - * - * @author Daniele Alessandri */ class BRPOPLPUSH extends RedisCommand { diff --git a/src/Command/Redis/CLIENT.php b/src/Command/Redis/CLIENT.php index 71c214b0..ea5676c0 100644 --- a/src/Command/Redis/CLIENT.php +++ b/src/Command/Redis/CLIENT.php @@ -19,8 +19,6 @@ use Predis\Command\Command as RedisCommand; * @link http://redis.io/commands/client-kill * @link http://redis.io/commands/client-getname * @link http://redis.io/commands/client-setname - * - * @author Daniele Alessandri */ class CLIENT extends RedisCommand { diff --git a/src/Command/Redis/COMMAND.php b/src/Command/Redis/COMMAND.php index 85dad851..22744e25 100644 --- a/src/Command/Redis/COMMAND.php +++ b/src/Command/Redis/COMMAND.php @@ -16,8 +16,6 @@ use Predis\Command\Command as BaseCommand; /** * @link http://redis.io/commands/command - * - * @author Daniele Alessandri */ class COMMAND extends BaseCommand { diff --git a/src/Command/Redis/CONFIG.php b/src/Command/Redis/CONFIG.php index eb7e0747..1f057e84 100644 --- a/src/Command/Redis/CONFIG.php +++ b/src/Command/Redis/CONFIG.php @@ -19,8 +19,6 @@ use Predis\Command\Command as RedisCommand; * @link http://redis.io/commands/config-get * @link http://redis.io/commands/config-resetstat * @link http://redis.io/commands/config-rewrite - * - * @author Daniele Alessandri */ class CONFIG extends RedisCommand { diff --git a/src/Command/Redis/DBSIZE.php b/src/Command/Redis/DBSIZE.php index 037d8242..e048086f 100644 --- a/src/Command/Redis/DBSIZE.php +++ b/src/Command/Redis/DBSIZE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/dbsize - * - * @author Daniele Alessandri */ class DBSIZE extends RedisCommand { diff --git a/src/Command/Redis/DECR.php b/src/Command/Redis/DECR.php index 6bdbfc4a..154f69a8 100644 --- a/src/Command/Redis/DECR.php +++ b/src/Command/Redis/DECR.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/decr - * - * @author Daniele Alessandri */ class DECR extends RedisCommand { diff --git a/src/Command/Redis/DECRBY.php b/src/Command/Redis/DECRBY.php index 9010e42c..2673bd37 100644 --- a/src/Command/Redis/DECRBY.php +++ b/src/Command/Redis/DECRBY.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/decrby - * - * @author Daniele Alessandri */ class DECRBY extends RedisCommand { diff --git a/src/Command/Redis/DEL.php b/src/Command/Redis/DEL.php index c188cb05..ae24ad2f 100644 --- a/src/Command/Redis/DEL.php +++ b/src/Command/Redis/DEL.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/del - * - * @author Daniele Alessandri */ class DEL extends RedisCommand { diff --git a/src/Command/Redis/DISCARD.php b/src/Command/Redis/DISCARD.php index ab730dc9..5599f804 100644 --- a/src/Command/Redis/DISCARD.php +++ b/src/Command/Redis/DISCARD.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/discard - * - * @author Daniele Alessandri */ class DISCARD extends RedisCommand { diff --git a/src/Command/Redis/DUMP.php b/src/Command/Redis/DUMP.php index bdacf2be..55bcfb4e 100644 --- a/src/Command/Redis/DUMP.php +++ b/src/Command/Redis/DUMP.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/dump - * - * @author Daniele Alessandri */ class DUMP extends RedisCommand { diff --git a/src/Command/Redis/ECHO_.php b/src/Command/Redis/ECHO_.php index 97fede99..0bab1863 100644 --- a/src/Command/Redis/ECHO_.php +++ b/src/Command/Redis/ECHO_.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/echo - * - * @author Daniele Alessandri */ class ECHO_ extends RedisCommand { diff --git a/src/Command/Redis/EVALSHA.php b/src/Command/Redis/EVALSHA.php index 5e77aa6f..d2ecfa3d 100644 --- a/src/Command/Redis/EVALSHA.php +++ b/src/Command/Redis/EVALSHA.php @@ -14,8 +14,6 @@ namespace Predis\Command\Redis; /** * @link http://redis.io/commands/evalsha - * - * @author Daniele Alessandri */ class EVALSHA extends EVAL_ { diff --git a/src/Command/Redis/EVAL_.php b/src/Command/Redis/EVAL_.php index 31afe444..73410421 100644 --- a/src/Command/Redis/EVAL_.php +++ b/src/Command/Redis/EVAL_.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/eval - * - * @author Daniele Alessandri */ class EVAL_ extends RedisCommand { diff --git a/src/Command/Redis/EXEC.php b/src/Command/Redis/EXEC.php index 1e033240..750759fc 100644 --- a/src/Command/Redis/EXEC.php +++ b/src/Command/Redis/EXEC.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/exec - * - * @author Daniele Alessandri */ class EXEC extends RedisCommand { diff --git a/src/Command/Redis/EXISTS.php b/src/Command/Redis/EXISTS.php index 2bc18fd0..5a06fa38 100644 --- a/src/Command/Redis/EXISTS.php +++ b/src/Command/Redis/EXISTS.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/exists - * - * @author Daniele Alessandri */ class EXISTS extends RedisCommand { diff --git a/src/Command/Redis/EXPIRE.php b/src/Command/Redis/EXPIRE.php index 0f6263c7..e0d562c1 100644 --- a/src/Command/Redis/EXPIRE.php +++ b/src/Command/Redis/EXPIRE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/expire - * - * @author Daniele Alessandri */ class EXPIRE extends RedisCommand { diff --git a/src/Command/Redis/EXPIREAT.php b/src/Command/Redis/EXPIREAT.php index 0458e546..3b8b311e 100644 --- a/src/Command/Redis/EXPIREAT.php +++ b/src/Command/Redis/EXPIREAT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/expireat - * - * @author Daniele Alessandri */ class EXPIREAT extends RedisCommand { diff --git a/src/Command/Redis/FLUSHALL.php b/src/Command/Redis/FLUSHALL.php index febbb165..c61a98ab 100644 --- a/src/Command/Redis/FLUSHALL.php +++ b/src/Command/Redis/FLUSHALL.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/flushall - * - * @author Daniele Alessandri */ class FLUSHALL extends RedisCommand { diff --git a/src/Command/Redis/FLUSHDB.php b/src/Command/Redis/FLUSHDB.php index b67517ef..83eb7d38 100644 --- a/src/Command/Redis/FLUSHDB.php +++ b/src/Command/Redis/FLUSHDB.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/flushdb - * - * @author Daniele Alessandri */ class FLUSHDB extends RedisCommand { diff --git a/src/Command/Redis/GEOADD.php b/src/Command/Redis/GEOADD.php index 3217126a..553517dd 100644 --- a/src/Command/Redis/GEOADD.php +++ b/src/Command/Redis/GEOADD.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/geoadd - * - * @author Daniele Alessandri */ class GEOADD extends RedisCommand { diff --git a/src/Command/Redis/GEODIST.php b/src/Command/Redis/GEODIST.php index 986fc0f9..cd3b4fbe 100644 --- a/src/Command/Redis/GEODIST.php +++ b/src/Command/Redis/GEODIST.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/geodist - * - * @author Daniele Alessandri */ class GEODIST extends RedisCommand { diff --git a/src/Command/Redis/GEOHASH.php b/src/Command/Redis/GEOHASH.php index 0ac38e58..1ce633a7 100644 --- a/src/Command/Redis/GEOHASH.php +++ b/src/Command/Redis/GEOHASH.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/geohash - * - * @author Daniele Alessandri */ class GEOHASH extends RedisCommand { diff --git a/src/Command/Redis/GEOPOS.php b/src/Command/Redis/GEOPOS.php index 1329e67a..ffda3b15 100644 --- a/src/Command/Redis/GEOPOS.php +++ b/src/Command/Redis/GEOPOS.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/geopos - * - * @author Daniele Alessandri */ class GEOPOS extends RedisCommand { diff --git a/src/Command/Redis/GEORADIUS.php b/src/Command/Redis/GEORADIUS.php index cf9b32df..dc393fea 100644 --- a/src/Command/Redis/GEORADIUS.php +++ b/src/Command/Redis/GEORADIUS.php @@ -21,8 +21,6 @@ use Predis\Command\Command as RedisCommand; * when migrating or writing new code. * * @link http://redis.io/commands/georadius - * - * @author Daniele Alessandri */ class GEORADIUS extends RedisCommand { diff --git a/src/Command/Redis/GEORADIUSBYMEMBER.php b/src/Command/Redis/GEORADIUSBYMEMBER.php index 6eed1c08..7d0d3534 100644 --- a/src/Command/Redis/GEORADIUSBYMEMBER.php +++ b/src/Command/Redis/GEORADIUSBYMEMBER.php @@ -19,8 +19,6 @@ namespace Predis\Command\Redis; * when migrating or writing new code. * * @link http://redis.io/commands/georadiusbymember - * - * @author Daniele Alessandri */ class GEORADIUSBYMEMBER extends GEORADIUS { diff --git a/src/Command/Redis/GET.php b/src/Command/Redis/GET.php index 3ac644cc..26198a75 100644 --- a/src/Command/Redis/GET.php +++ b/src/Command/Redis/GET.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/get - * - * @author Daniele Alessandri */ class GET extends RedisCommand { diff --git a/src/Command/Redis/GETBIT.php b/src/Command/Redis/GETBIT.php index 31a22d8a..5354caa0 100644 --- a/src/Command/Redis/GETBIT.php +++ b/src/Command/Redis/GETBIT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/getbit - * - * @author Daniele Alessandri */ class GETBIT extends RedisCommand { diff --git a/src/Command/Redis/GETRANGE.php b/src/Command/Redis/GETRANGE.php index c77fbb02..372490e0 100644 --- a/src/Command/Redis/GETRANGE.php +++ b/src/Command/Redis/GETRANGE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/getrange - * - * @author Daniele Alessandri */ class GETRANGE extends RedisCommand { diff --git a/src/Command/Redis/GETSET.php b/src/Command/Redis/GETSET.php index 9a8e3452..18fde384 100644 --- a/src/Command/Redis/GETSET.php +++ b/src/Command/Redis/GETSET.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/getset - * - * @author Daniele Alessandri */ class GETSET extends RedisCommand { diff --git a/src/Command/Redis/HDEL.php b/src/Command/Redis/HDEL.php index 8befafc8..cd70bf00 100644 --- a/src/Command/Redis/HDEL.php +++ b/src/Command/Redis/HDEL.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hdel - * - * @author Daniele Alessandri */ class HDEL extends RedisCommand { diff --git a/src/Command/Redis/HEXISTS.php b/src/Command/Redis/HEXISTS.php index a2a3b9bd..cf427d8e 100644 --- a/src/Command/Redis/HEXISTS.php +++ b/src/Command/Redis/HEXISTS.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hexists - * - * @author Daniele Alessandri */ class HEXISTS extends RedisCommand { diff --git a/src/Command/Redis/HGET.php b/src/Command/Redis/HGET.php index 90d2fab8..07d341c6 100644 --- a/src/Command/Redis/HGET.php +++ b/src/Command/Redis/HGET.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hget - * - * @author Daniele Alessandri */ class HGET extends RedisCommand { diff --git a/src/Command/Redis/HGETALL.php b/src/Command/Redis/HGETALL.php index 3980aba6..0cb2c85c 100644 --- a/src/Command/Redis/HGETALL.php +++ b/src/Command/Redis/HGETALL.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hgetall - * - * @author Daniele Alessandri */ class HGETALL extends RedisCommand { diff --git a/src/Command/Redis/HINCRBY.php b/src/Command/Redis/HINCRBY.php index f516beb6..dabc34d7 100644 --- a/src/Command/Redis/HINCRBY.php +++ b/src/Command/Redis/HINCRBY.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hincrby - * - * @author Daniele Alessandri */ class HINCRBY extends RedisCommand { diff --git a/src/Command/Redis/HINCRBYFLOAT.php b/src/Command/Redis/HINCRBYFLOAT.php index 3d2611ca..d253aa35 100644 --- a/src/Command/Redis/HINCRBYFLOAT.php +++ b/src/Command/Redis/HINCRBYFLOAT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hincrbyfloat - * - * @author Daniele Alessandri */ class HINCRBYFLOAT extends RedisCommand { diff --git a/src/Command/Redis/HKEYS.php b/src/Command/Redis/HKEYS.php index 0be6b8ad..8a74d797 100644 --- a/src/Command/Redis/HKEYS.php +++ b/src/Command/Redis/HKEYS.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hkeys - * - * @author Daniele Alessandri */ class HKEYS extends RedisCommand { diff --git a/src/Command/Redis/HLEN.php b/src/Command/Redis/HLEN.php index 79272a44..52a55097 100644 --- a/src/Command/Redis/HLEN.php +++ b/src/Command/Redis/HLEN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hlen - * - * @author Daniele Alessandri */ class HLEN extends RedisCommand { diff --git a/src/Command/Redis/HMGET.php b/src/Command/Redis/HMGET.php index 40014015..0f92de7f 100644 --- a/src/Command/Redis/HMGET.php +++ b/src/Command/Redis/HMGET.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hmget - * - * @author Daniele Alessandri */ class HMGET extends RedisCommand { diff --git a/src/Command/Redis/HMSET.php b/src/Command/Redis/HMSET.php index 274ed521..c11f6a78 100644 --- a/src/Command/Redis/HMSET.php +++ b/src/Command/Redis/HMSET.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hmset - * - * @author Daniele Alessandri */ class HMSET extends RedisCommand { diff --git a/src/Command/Redis/HSCAN.php b/src/Command/Redis/HSCAN.php index 98eb2c2e..5b0ef326 100644 --- a/src/Command/Redis/HSCAN.php +++ b/src/Command/Redis/HSCAN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hscan - * - * @author Daniele Alessandri */ class HSCAN extends RedisCommand { diff --git a/src/Command/Redis/HSET.php b/src/Command/Redis/HSET.php index acd33a49..bb34c89d 100644 --- a/src/Command/Redis/HSET.php +++ b/src/Command/Redis/HSET.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hset - * - * @author Daniele Alessandri */ class HSET extends RedisCommand { diff --git a/src/Command/Redis/HSETNX.php b/src/Command/Redis/HSETNX.php index 159a8113..5a7dd088 100644 --- a/src/Command/Redis/HSETNX.php +++ b/src/Command/Redis/HSETNX.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hsetnx - * - * @author Daniele Alessandri */ class HSETNX extends RedisCommand { diff --git a/src/Command/Redis/HSTRLEN.php b/src/Command/Redis/HSTRLEN.php index c5bed87e..e4730b60 100644 --- a/src/Command/Redis/HSTRLEN.php +++ b/src/Command/Redis/HSTRLEN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hstrlen - * - * @author Daniele Alessandri */ class HSTRLEN extends RedisCommand { diff --git a/src/Command/Redis/HVALS.php b/src/Command/Redis/HVALS.php index 06ba404c..dcb53d98 100644 --- a/src/Command/Redis/HVALS.php +++ b/src/Command/Redis/HVALS.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/hvals - * - * @author Daniele Alessandri */ class HVALS extends RedisCommand { diff --git a/src/Command/Redis/INCR.php b/src/Command/Redis/INCR.php index 3f85d50e..955bd7eb 100644 --- a/src/Command/Redis/INCR.php +++ b/src/Command/Redis/INCR.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/incr - * - * @author Daniele Alessandri */ class INCR extends RedisCommand { diff --git a/src/Command/Redis/INCRBY.php b/src/Command/Redis/INCRBY.php index 80ef7440..c1720717 100644 --- a/src/Command/Redis/INCRBY.php +++ b/src/Command/Redis/INCRBY.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/incrby - * - * @author Daniele Alessandri */ class INCRBY extends RedisCommand { diff --git a/src/Command/Redis/INCRBYFLOAT.php b/src/Command/Redis/INCRBYFLOAT.php index 74d96bdd..f040a128 100644 --- a/src/Command/Redis/INCRBYFLOAT.php +++ b/src/Command/Redis/INCRBYFLOAT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/incrbyfloat - * - * @author Daniele Alessandri */ class INCRBYFLOAT extends RedisCommand { diff --git a/src/Command/Redis/INFO.php b/src/Command/Redis/INFO.php index 3ab07f88..2539bfb2 100644 --- a/src/Command/Redis/INFO.php +++ b/src/Command/Redis/INFO.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/info - * - * @author Daniele Alessandri */ class INFO extends RedisCommand { diff --git a/src/Command/Redis/KEYS.php b/src/Command/Redis/KEYS.php index d2892305..f8003757 100644 --- a/src/Command/Redis/KEYS.php +++ b/src/Command/Redis/KEYS.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/keys - * - * @author Daniele Alessandri */ class KEYS extends RedisCommand { diff --git a/src/Command/Redis/LASTSAVE.php b/src/Command/Redis/LASTSAVE.php index cd4d9c63..7a542fd1 100644 --- a/src/Command/Redis/LASTSAVE.php +++ b/src/Command/Redis/LASTSAVE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/lastsave - * - * @author Daniele Alessandri */ class LASTSAVE extends RedisCommand { diff --git a/src/Command/Redis/LINDEX.php b/src/Command/Redis/LINDEX.php index e4b6fbf7..39a46b96 100644 --- a/src/Command/Redis/LINDEX.php +++ b/src/Command/Redis/LINDEX.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/lindex - * - * @author Daniele Alessandri */ class LINDEX extends RedisCommand { diff --git a/src/Command/Redis/LINSERT.php b/src/Command/Redis/LINSERT.php index ad1589ff..9c3d9620 100644 --- a/src/Command/Redis/LINSERT.php +++ b/src/Command/Redis/LINSERT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/linsert - * - * @author Daniele Alessandri */ class LINSERT extends RedisCommand { diff --git a/src/Command/Redis/LLEN.php b/src/Command/Redis/LLEN.php index 48f93e96..390fc8ac 100644 --- a/src/Command/Redis/LLEN.php +++ b/src/Command/Redis/LLEN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/llen - * - * @author Daniele Alessandri */ class LLEN extends RedisCommand { diff --git a/src/Command/Redis/LPOP.php b/src/Command/Redis/LPOP.php index eceb78db..19a123bb 100644 --- a/src/Command/Redis/LPOP.php +++ b/src/Command/Redis/LPOP.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/lpop - * - * @author Daniele Alessandri */ class LPOP extends RedisCommand { diff --git a/src/Command/Redis/LPUSH.php b/src/Command/Redis/LPUSH.php index f09f100c..68ffbc17 100644 --- a/src/Command/Redis/LPUSH.php +++ b/src/Command/Redis/LPUSH.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/lpush - * - * @author Daniele Alessandri */ class LPUSH extends RedisCommand { diff --git a/src/Command/Redis/LPUSHX.php b/src/Command/Redis/LPUSHX.php index 3413cfb3..61792dec 100644 --- a/src/Command/Redis/LPUSHX.php +++ b/src/Command/Redis/LPUSHX.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/lpushx - * - * @author Daniele Alessandri */ class LPUSHX extends RedisCommand { diff --git a/src/Command/Redis/LRANGE.php b/src/Command/Redis/LRANGE.php index df543704..61364057 100644 --- a/src/Command/Redis/LRANGE.php +++ b/src/Command/Redis/LRANGE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/lrange - * - * @author Daniele Alessandri */ class LRANGE extends RedisCommand { diff --git a/src/Command/Redis/LREM.php b/src/Command/Redis/LREM.php index 7150ee5d..06bd4f4a 100644 --- a/src/Command/Redis/LREM.php +++ b/src/Command/Redis/LREM.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/lrem - * - * @author Daniele Alessandri */ class LREM extends RedisCommand { diff --git a/src/Command/Redis/LSET.php b/src/Command/Redis/LSET.php index c5557317..33d79c20 100644 --- a/src/Command/Redis/LSET.php +++ b/src/Command/Redis/LSET.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/lset - * - * @author Daniele Alessandri */ class LSET extends RedisCommand { diff --git a/src/Command/Redis/LTRIM.php b/src/Command/Redis/LTRIM.php index 2ddaf278..902f43d3 100644 --- a/src/Command/Redis/LTRIM.php +++ b/src/Command/Redis/LTRIM.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/ltrim - * - * @author Daniele Alessandri */ class LTRIM extends RedisCommand { diff --git a/src/Command/Redis/MGET.php b/src/Command/Redis/MGET.php index 1712a44b..1e26d2c9 100644 --- a/src/Command/Redis/MGET.php +++ b/src/Command/Redis/MGET.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/mget - * - * @author Daniele Alessandri */ class MGET extends RedisCommand { diff --git a/src/Command/Redis/MIGRATE.php b/src/Command/Redis/MIGRATE.php index 008bd353..79b7962b 100644 --- a/src/Command/Redis/MIGRATE.php +++ b/src/Command/Redis/MIGRATE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/migrate - * - * @author Daniele Alessandri */ class MIGRATE extends RedisCommand { diff --git a/src/Command/Redis/MONITOR.php b/src/Command/Redis/MONITOR.php index 9d85edca..f82f7f09 100644 --- a/src/Command/Redis/MONITOR.php +++ b/src/Command/Redis/MONITOR.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/monitor - * - * @author Daniele Alessandri */ class MONITOR extends RedisCommand { diff --git a/src/Command/Redis/MOVE.php b/src/Command/Redis/MOVE.php index 48ca9dce..7a4851c0 100644 --- a/src/Command/Redis/MOVE.php +++ b/src/Command/Redis/MOVE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/move - * - * @author Daniele Alessandri */ class MOVE extends RedisCommand { diff --git a/src/Command/Redis/MSET.php b/src/Command/Redis/MSET.php index 4da93ca6..93b7f131 100644 --- a/src/Command/Redis/MSET.php +++ b/src/Command/Redis/MSET.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/mset - * - * @author Daniele Alessandri */ class MSET extends RedisCommand { diff --git a/src/Command/Redis/MSETNX.php b/src/Command/Redis/MSETNX.php index e706f9c1..b5ae50c0 100644 --- a/src/Command/Redis/MSETNX.php +++ b/src/Command/Redis/MSETNX.php @@ -14,8 +14,6 @@ namespace Predis\Command\Redis; /** * @link http://redis.io/commands/msetnx - * - * @author Daniele Alessandri */ class MSETNX extends MSET { diff --git a/src/Command/Redis/MULTI.php b/src/Command/Redis/MULTI.php index 70ed00b3..2638760c 100644 --- a/src/Command/Redis/MULTI.php +++ b/src/Command/Redis/MULTI.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/multi - * - * @author Daniele Alessandri */ class MULTI extends RedisCommand { diff --git a/src/Command/Redis/OBJECT_.php b/src/Command/Redis/OBJECT_.php index f0df08be..b68e3400 100644 --- a/src/Command/Redis/OBJECT_.php +++ b/src/Command/Redis/OBJECT_.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/object - * - * @author Daniele Alessandri */ class OBJECT_ extends RedisCommand { diff --git a/src/Command/Redis/PERSIST.php b/src/Command/Redis/PERSIST.php index 17730511..34a62053 100644 --- a/src/Command/Redis/PERSIST.php +++ b/src/Command/Redis/PERSIST.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/persist - * - * @author Daniele Alessandri */ class PERSIST extends RedisCommand { diff --git a/src/Command/Redis/PEXPIRE.php b/src/Command/Redis/PEXPIRE.php index 6411c7e0..b44c2ea0 100644 --- a/src/Command/Redis/PEXPIRE.php +++ b/src/Command/Redis/PEXPIRE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/pexpire - * - * @author Daniele Alessandri */ class PEXPIRE extends RedisCommand { diff --git a/src/Command/Redis/PEXPIREAT.php b/src/Command/Redis/PEXPIREAT.php index 021c67ca..9cf6f283 100644 --- a/src/Command/Redis/PEXPIREAT.php +++ b/src/Command/Redis/PEXPIREAT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/pexpireat - * - * @author Daniele Alessandri */ class PEXPIREAT extends RedisCommand { diff --git a/src/Command/Redis/PFADD.php b/src/Command/Redis/PFADD.php index 29d2168e..f9d2f112 100644 --- a/src/Command/Redis/PFADD.php +++ b/src/Command/Redis/PFADD.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/pfadd - * - * @author Daniele Alessandri */ class PFADD extends RedisCommand { diff --git a/src/Command/Redis/PFCOUNT.php b/src/Command/Redis/PFCOUNT.php index 323954c8..b72962fb 100644 --- a/src/Command/Redis/PFCOUNT.php +++ b/src/Command/Redis/PFCOUNT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/pfcount - * - * @author Daniele Alessandri */ class PFCOUNT extends RedisCommand { diff --git a/src/Command/Redis/PFMERGE.php b/src/Command/Redis/PFMERGE.php index 23aac4b9..a1ae2d9e 100644 --- a/src/Command/Redis/PFMERGE.php +++ b/src/Command/Redis/PFMERGE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/pfmerge - * - * @author Daniele Alessandri */ class PFMERGE extends RedisCommand { diff --git a/src/Command/Redis/PING.php b/src/Command/Redis/PING.php index 77cab237..cfc989df 100644 --- a/src/Command/Redis/PING.php +++ b/src/Command/Redis/PING.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/ping - * - * @author Daniele Alessandri */ class PING extends RedisCommand { diff --git a/src/Command/Redis/PSETEX.php b/src/Command/Redis/PSETEX.php index 446e8d51..a9bcf892 100644 --- a/src/Command/Redis/PSETEX.php +++ b/src/Command/Redis/PSETEX.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/psetex - * - * @author Daniele Alessandri */ class PSETEX extends RedisCommand { diff --git a/src/Command/Redis/PSUBSCRIBE.php b/src/Command/Redis/PSUBSCRIBE.php index 40b328d6..35e196bf 100644 --- a/src/Command/Redis/PSUBSCRIBE.php +++ b/src/Command/Redis/PSUBSCRIBE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/psubscribe - * - * @author Daniele Alessandri */ class PSUBSCRIBE extends RedisCommand { diff --git a/src/Command/Redis/PTTL.php b/src/Command/Redis/PTTL.php index 3b6596fd..d5f17dcf 100644 --- a/src/Command/Redis/PTTL.php +++ b/src/Command/Redis/PTTL.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/pttl - * - * @author Daniele Alessandri */ class PTTL extends RedisCommand { diff --git a/src/Command/Redis/PUBLISH.php b/src/Command/Redis/PUBLISH.php index 060b5096..5f36c09e 100644 --- a/src/Command/Redis/PUBLISH.php +++ b/src/Command/Redis/PUBLISH.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/publish - * - * @author Daniele Alessandri */ class PUBLISH extends RedisCommand { diff --git a/src/Command/Redis/PUBSUB.php b/src/Command/Redis/PUBSUB.php index f1bd41d7..774c6682 100644 --- a/src/Command/Redis/PUBSUB.php +++ b/src/Command/Redis/PUBSUB.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/pubsub - * - * @author Daniele Alessandri */ class PUBSUB extends RedisCommand { diff --git a/src/Command/Redis/PUNSUBSCRIBE.php b/src/Command/Redis/PUNSUBSCRIBE.php index 73758fcc..877e95b7 100644 --- a/src/Command/Redis/PUNSUBSCRIBE.php +++ b/src/Command/Redis/PUNSUBSCRIBE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/punsubscribe - * - * @author Daniele Alessandri */ class PUNSUBSCRIBE extends RedisCommand { diff --git a/src/Command/Redis/QUIT.php b/src/Command/Redis/QUIT.php index ec05c2c2..e36317c9 100644 --- a/src/Command/Redis/QUIT.php +++ b/src/Command/Redis/QUIT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/quit - * - * @author Daniele Alessandri */ class QUIT extends RedisCommand { diff --git a/src/Command/Redis/RANDOMKEY.php b/src/Command/Redis/RANDOMKEY.php index b0d01f27..8fe759bf 100644 --- a/src/Command/Redis/RANDOMKEY.php +++ b/src/Command/Redis/RANDOMKEY.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/randomkey - * - * @author Daniele Alessandri */ class RANDOMKEY extends RedisCommand { diff --git a/src/Command/Redis/RENAME.php b/src/Command/Redis/RENAME.php index 5d7dcba2..b95470d1 100644 --- a/src/Command/Redis/RENAME.php +++ b/src/Command/Redis/RENAME.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/rename - * - * @author Daniele Alessandri */ class RENAME extends RedisCommand { diff --git a/src/Command/Redis/RENAMENX.php b/src/Command/Redis/RENAMENX.php index 8d95f116..6072491e 100644 --- a/src/Command/Redis/RENAMENX.php +++ b/src/Command/Redis/RENAMENX.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/renamenx - * - * @author Daniele Alessandri */ class RENAMENX extends RedisCommand { diff --git a/src/Command/Redis/RESTORE.php b/src/Command/Redis/RESTORE.php index 540b3c0d..b5c12639 100644 --- a/src/Command/Redis/RESTORE.php +++ b/src/Command/Redis/RESTORE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/restore - * - * @author Daniele Alessandri */ class RESTORE extends RedisCommand { diff --git a/src/Command/Redis/RPOP.php b/src/Command/Redis/RPOP.php index 84eb1604..f8325483 100644 --- a/src/Command/Redis/RPOP.php +++ b/src/Command/Redis/RPOP.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/rpop - * - * @author Daniele Alessandri */ class RPOP extends RedisCommand { diff --git a/src/Command/Redis/RPOPLPUSH.php b/src/Command/Redis/RPOPLPUSH.php index f07b02e0..57bd6631 100644 --- a/src/Command/Redis/RPOPLPUSH.php +++ b/src/Command/Redis/RPOPLPUSH.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/rpoplpush - * - * @author Daniele Alessandri */ class RPOPLPUSH extends RedisCommand { diff --git a/src/Command/Redis/RPUSH.php b/src/Command/Redis/RPUSH.php index 91e77c5f..5c5a6f1e 100644 --- a/src/Command/Redis/RPUSH.php +++ b/src/Command/Redis/RPUSH.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/rpush - * - * @author Daniele Alessandri */ class RPUSH extends RedisCommand { diff --git a/src/Command/Redis/RPUSHX.php b/src/Command/Redis/RPUSHX.php index c20397e3..4e01d70e 100644 --- a/src/Command/Redis/RPUSHX.php +++ b/src/Command/Redis/RPUSHX.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/rpushx - * - * @author Daniele Alessandri */ class RPUSHX extends RedisCommand { diff --git a/src/Command/Redis/SADD.php b/src/Command/Redis/SADD.php index 7cd19fd8..aea003fd 100644 --- a/src/Command/Redis/SADD.php +++ b/src/Command/Redis/SADD.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/sadd - * - * @author Daniele Alessandri */ class SADD extends RedisCommand { diff --git a/src/Command/Redis/SAVE.php b/src/Command/Redis/SAVE.php index 7dd15755..33beb544 100644 --- a/src/Command/Redis/SAVE.php +++ b/src/Command/Redis/SAVE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/save - * - * @author Daniele Alessandri */ class SAVE extends RedisCommand { diff --git a/src/Command/Redis/SCAN.php b/src/Command/Redis/SCAN.php index dd06b96a..038f7d81 100644 --- a/src/Command/Redis/SCAN.php +++ b/src/Command/Redis/SCAN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/scan - * - * @author Daniele Alessandri */ class SCAN extends RedisCommand { diff --git a/src/Command/Redis/SCARD.php b/src/Command/Redis/SCARD.php index 5ee7346e..0ffe82b5 100644 --- a/src/Command/Redis/SCARD.php +++ b/src/Command/Redis/SCARD.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/scard - * - * @author Daniele Alessandri */ class SCARD extends RedisCommand { diff --git a/src/Command/Redis/SCRIPT.php b/src/Command/Redis/SCRIPT.php index 8e6a89e0..d9fbf4eb 100644 --- a/src/Command/Redis/SCRIPT.php +++ b/src/Command/Redis/SCRIPT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/script - * - * @author Daniele Alessandri */ class SCRIPT extends RedisCommand { diff --git a/src/Command/Redis/SDIFF.php b/src/Command/Redis/SDIFF.php index 6e8c976f..b83abe68 100644 --- a/src/Command/Redis/SDIFF.php +++ b/src/Command/Redis/SDIFF.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/sdiff - * - * @author Daniele Alessandri */ class SDIFF extends RedisCommand { diff --git a/src/Command/Redis/SDIFFSTORE.php b/src/Command/Redis/SDIFFSTORE.php index e5f07a32..63e53b79 100644 --- a/src/Command/Redis/SDIFFSTORE.php +++ b/src/Command/Redis/SDIFFSTORE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/sdiffstore - * - * @author Daniele Alessandri */ class SDIFFSTORE extends RedisCommand { diff --git a/src/Command/Redis/SELECT.php b/src/Command/Redis/SELECT.php index ef341aee..afdc5d0a 100644 --- a/src/Command/Redis/SELECT.php +++ b/src/Command/Redis/SELECT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/select - * - * @author Daniele Alessandri */ class SELECT extends RedisCommand { diff --git a/src/Command/Redis/SENTINEL.php b/src/Command/Redis/SENTINEL.php index 806fe983..f7e6f72c 100644 --- a/src/Command/Redis/SENTINEL.php +++ b/src/Command/Redis/SENTINEL.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/topics/sentinel - * - * @author Daniele Alessandri */ class SENTINEL extends RedisCommand { diff --git a/src/Command/Redis/SET.php b/src/Command/Redis/SET.php index 0824dcbd..84fb3ad3 100644 --- a/src/Command/Redis/SET.php +++ b/src/Command/Redis/SET.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/set - * - * @author Daniele Alessandri */ class SET extends RedisCommand { diff --git a/src/Command/Redis/SETBIT.php b/src/Command/Redis/SETBIT.php index 48adbcd4..38b3fda8 100644 --- a/src/Command/Redis/SETBIT.php +++ b/src/Command/Redis/SETBIT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/setbit - * - * @author Daniele Alessandri */ class SETBIT extends RedisCommand { diff --git a/src/Command/Redis/SETEX.php b/src/Command/Redis/SETEX.php index 5fa4914d..0f62d021 100644 --- a/src/Command/Redis/SETEX.php +++ b/src/Command/Redis/SETEX.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/setex - * - * @author Daniele Alessandri */ class SETEX extends RedisCommand { diff --git a/src/Command/Redis/SETNX.php b/src/Command/Redis/SETNX.php index 92063f8e..ec3c45a0 100644 --- a/src/Command/Redis/SETNX.php +++ b/src/Command/Redis/SETNX.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/setnx - * - * @author Daniele Alessandri */ class SETNX extends RedisCommand { diff --git a/src/Command/Redis/SETRANGE.php b/src/Command/Redis/SETRANGE.php index afef371e..6657caa7 100644 --- a/src/Command/Redis/SETRANGE.php +++ b/src/Command/Redis/SETRANGE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/setrange - * - * @author Daniele Alessandri */ class SETRANGE extends RedisCommand { diff --git a/src/Command/Redis/SHUTDOWN.php b/src/Command/Redis/SHUTDOWN.php index a1f74423..2843c470 100644 --- a/src/Command/Redis/SHUTDOWN.php +++ b/src/Command/Redis/SHUTDOWN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/shutdown - * - * @author Daniele Alessandri */ class SHUTDOWN extends RedisCommand { diff --git a/src/Command/Redis/SINTER.php b/src/Command/Redis/SINTER.php index 9f8ef29c..50f4fea4 100644 --- a/src/Command/Redis/SINTER.php +++ b/src/Command/Redis/SINTER.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/sinter - * - * @author Daniele Alessandri */ class SINTER extends RedisCommand { diff --git a/src/Command/Redis/SINTERSTORE.php b/src/Command/Redis/SINTERSTORE.php index edd417b7..36294aad 100644 --- a/src/Command/Redis/SINTERSTORE.php +++ b/src/Command/Redis/SINTERSTORE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/sinterstore - * - * @author Daniele Alessandri */ class SINTERSTORE extends RedisCommand { diff --git a/src/Command/Redis/SISMEMBER.php b/src/Command/Redis/SISMEMBER.php index 2b756fc9..7eab181f 100644 --- a/src/Command/Redis/SISMEMBER.php +++ b/src/Command/Redis/SISMEMBER.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/sismember - * - * @author Daniele Alessandri */ class SISMEMBER extends RedisCommand { diff --git a/src/Command/Redis/SLAVEOF.php b/src/Command/Redis/SLAVEOF.php index de24de5b..5c6f5c20 100644 --- a/src/Command/Redis/SLAVEOF.php +++ b/src/Command/Redis/SLAVEOF.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/slaveof - * - * @author Daniele Alessandri */ class SLAVEOF extends RedisCommand { diff --git a/src/Command/Redis/SLOWLOG.php b/src/Command/Redis/SLOWLOG.php index 0c79c9f5..87f3bc31 100644 --- a/src/Command/Redis/SLOWLOG.php +++ b/src/Command/Redis/SLOWLOG.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/slowlog - * - * @author Daniele Alessandri */ class SLOWLOG extends RedisCommand { diff --git a/src/Command/Redis/SMEMBERS.php b/src/Command/Redis/SMEMBERS.php index b9ab5a5e..1f2fdadc 100644 --- a/src/Command/Redis/SMEMBERS.php +++ b/src/Command/Redis/SMEMBERS.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/smembers - * - * @author Daniele Alessandri */ class SMEMBERS extends RedisCommand { diff --git a/src/Command/Redis/SMOVE.php b/src/Command/Redis/SMOVE.php index a91ce0e7..75cb9989 100644 --- a/src/Command/Redis/SMOVE.php +++ b/src/Command/Redis/SMOVE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/smove - * - * @author Daniele Alessandri */ class SMOVE extends RedisCommand { diff --git a/src/Command/Redis/SORT.php b/src/Command/Redis/SORT.php index 883d4323..4f377466 100644 --- a/src/Command/Redis/SORT.php +++ b/src/Command/Redis/SORT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/sort - * - * @author Daniele Alessandri */ class SORT extends RedisCommand { diff --git a/src/Command/Redis/SPOP.php b/src/Command/Redis/SPOP.php index 10d8af63..8c8d70d5 100644 --- a/src/Command/Redis/SPOP.php +++ b/src/Command/Redis/SPOP.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/spop - * - * @author Daniele Alessandri */ class SPOP extends RedisCommand { diff --git a/src/Command/Redis/SRANDMEMBER.php b/src/Command/Redis/SRANDMEMBER.php index 102df3e6..22df14a9 100644 --- a/src/Command/Redis/SRANDMEMBER.php +++ b/src/Command/Redis/SRANDMEMBER.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/srandmember - * - * @author Daniele Alessandri */ class SRANDMEMBER extends RedisCommand { diff --git a/src/Command/Redis/SREM.php b/src/Command/Redis/SREM.php index fc47e44b..a5d4a639 100644 --- a/src/Command/Redis/SREM.php +++ b/src/Command/Redis/SREM.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/srem - * - * @author Daniele Alessandri */ class SREM extends RedisCommand { diff --git a/src/Command/Redis/SSCAN.php b/src/Command/Redis/SSCAN.php index 708aac4a..68642a4f 100644 --- a/src/Command/Redis/SSCAN.php +++ b/src/Command/Redis/SSCAN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/sscan - * - * @author Daniele Alessandri */ class SSCAN extends RedisCommand { diff --git a/src/Command/Redis/STRLEN.php b/src/Command/Redis/STRLEN.php index eddcba36..3eda85b4 100644 --- a/src/Command/Redis/STRLEN.php +++ b/src/Command/Redis/STRLEN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/strlen - * - * @author Daniele Alessandri */ class STRLEN extends RedisCommand { diff --git a/src/Command/Redis/SUBSCRIBE.php b/src/Command/Redis/SUBSCRIBE.php index 817c05ac..75adb011 100644 --- a/src/Command/Redis/SUBSCRIBE.php +++ b/src/Command/Redis/SUBSCRIBE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/subscribe - * - * @author Daniele Alessandri */ class SUBSCRIBE extends RedisCommand { diff --git a/src/Command/Redis/SUBSTR.php b/src/Command/Redis/SUBSTR.php index a78ba2b0..dd7a7975 100644 --- a/src/Command/Redis/SUBSTR.php +++ b/src/Command/Redis/SUBSTR.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/substr - * - * @author Daniele Alessandri */ class SUBSTR extends RedisCommand { diff --git a/src/Command/Redis/SUNION.php b/src/Command/Redis/SUNION.php index 2dae98a4..49f794e2 100644 --- a/src/Command/Redis/SUNION.php +++ b/src/Command/Redis/SUNION.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/sunion - * - * @author Daniele Alessandri */ class SUNION extends RedisCommand { diff --git a/src/Command/Redis/SUNIONSTORE.php b/src/Command/Redis/SUNIONSTORE.php index 0a304cf1..b3914e05 100644 --- a/src/Command/Redis/SUNIONSTORE.php +++ b/src/Command/Redis/SUNIONSTORE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/sunionstore - * - * @author Daniele Alessandri */ class SUNIONSTORE extends RedisCommand { diff --git a/src/Command/Redis/TIME.php b/src/Command/Redis/TIME.php index e8d35adf..417fe387 100644 --- a/src/Command/Redis/TIME.php +++ b/src/Command/Redis/TIME.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/time - * - * @author Daniele Alessandri */ class TIME extends RedisCommand { diff --git a/src/Command/Redis/TOUCH.php b/src/Command/Redis/TOUCH.php index 0db373aa..54da25a3 100644 --- a/src/Command/Redis/TOUCH.php +++ b/src/Command/Redis/TOUCH.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/touch - * - * @author Daniele Alessandri */ class TOUCH extends RedisCommand { diff --git a/src/Command/Redis/TTL.php b/src/Command/Redis/TTL.php index 1f078c9e..fc1e705f 100644 --- a/src/Command/Redis/TTL.php +++ b/src/Command/Redis/TTL.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/ttl - * - * @author Daniele Alessandri */ class TTL extends RedisCommand { diff --git a/src/Command/Redis/TYPE.php b/src/Command/Redis/TYPE.php index ec9b3d20..f0f70a0c 100644 --- a/src/Command/Redis/TYPE.php +++ b/src/Command/Redis/TYPE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/type - * - * @author Daniele Alessandri */ class TYPE extends RedisCommand { diff --git a/src/Command/Redis/UNSUBSCRIBE.php b/src/Command/Redis/UNSUBSCRIBE.php index 937389e9..9e8463e7 100644 --- a/src/Command/Redis/UNSUBSCRIBE.php +++ b/src/Command/Redis/UNSUBSCRIBE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/unsubscribe - * - * @author Daniele Alessandri */ class UNSUBSCRIBE extends RedisCommand { diff --git a/src/Command/Redis/UNWATCH.php b/src/Command/Redis/UNWATCH.php index b0048f8d..c3118fd2 100644 --- a/src/Command/Redis/UNWATCH.php +++ b/src/Command/Redis/UNWATCH.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/unwatch - * - * @author Daniele Alessandri */ class UNWATCH extends RedisCommand { diff --git a/src/Command/Redis/WATCH.php b/src/Command/Redis/WATCH.php index 9ec5983b..f08cc19c 100644 --- a/src/Command/Redis/WATCH.php +++ b/src/Command/Redis/WATCH.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/watch - * - * @author Daniele Alessandri */ class WATCH extends RedisCommand { diff --git a/src/Command/Redis/XADD.php b/src/Command/Redis/XADD.php index 1c5fb9b1..4653c23b 100644 --- a/src/Command/Redis/XADD.php +++ b/src/Command/Redis/XADD.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/xadd - * - * @author Daniele Alessandri */ class XADD extends RedisCommand { diff --git a/src/Command/Redis/XDEL.php b/src/Command/Redis/XDEL.php index 29089b27..8f706934 100644 --- a/src/Command/Redis/XDEL.php +++ b/src/Command/Redis/XDEL.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/xdel - * - * @author Daniele Alessandri */ class XDEL extends RedisCommand { diff --git a/src/Command/Redis/XLEN.php b/src/Command/Redis/XLEN.php index d1949eb2..61e4a816 100644 --- a/src/Command/Redis/XLEN.php +++ b/src/Command/Redis/XLEN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/xlen - * - * @author Daniele Alessandri */ class XLEN extends RedisCommand { diff --git a/src/Command/Redis/XRANGE.php b/src/Command/Redis/XRANGE.php index 5c7e725f..d2805e34 100644 --- a/src/Command/Redis/XRANGE.php +++ b/src/Command/Redis/XRANGE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/xrange - * - * @author Daniele Alessandri */ class XRANGE extends RedisCommand { diff --git a/src/Command/Redis/XREVRANGE.php b/src/Command/Redis/XREVRANGE.php index 5f1b5496..3b74e4b4 100644 --- a/src/Command/Redis/XREVRANGE.php +++ b/src/Command/Redis/XREVRANGE.php @@ -14,8 +14,6 @@ namespace Predis\Command\Redis; /** * @link http://redis.io/commands/xrevrange - * - * @author Daniele Alessandri */ class XREVRANGE extends XRANGE { diff --git a/src/Command/Redis/XTRIM.php b/src/Command/Redis/XTRIM.php index c9793b04..4ef0b1db 100644 --- a/src/Command/Redis/XTRIM.php +++ b/src/Command/Redis/XTRIM.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/xtrim - * - * @author Daniele Alessandri */ class XTRIM extends RedisCommand { diff --git a/src/Command/Redis/ZADD.php b/src/Command/Redis/ZADD.php index 8046e3fe..37099c50 100644 --- a/src/Command/Redis/ZADD.php +++ b/src/Command/Redis/ZADD.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zadd - * - * @author Daniele Alessandri */ class ZADD extends RedisCommand { diff --git a/src/Command/Redis/ZCARD.php b/src/Command/Redis/ZCARD.php index a1a2a6b5..e411568c 100644 --- a/src/Command/Redis/ZCARD.php +++ b/src/Command/Redis/ZCARD.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zcard - * - * @author Daniele Alessandri */ class ZCARD extends RedisCommand { diff --git a/src/Command/Redis/ZCOUNT.php b/src/Command/Redis/ZCOUNT.php index 16d0ab55..0f307dc5 100644 --- a/src/Command/Redis/ZCOUNT.php +++ b/src/Command/Redis/ZCOUNT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zcount - * - * @author Daniele Alessandri */ class ZCOUNT extends RedisCommand { diff --git a/src/Command/Redis/ZINCRBY.php b/src/Command/Redis/ZINCRBY.php index 85619e6d..2fa24b81 100644 --- a/src/Command/Redis/ZINCRBY.php +++ b/src/Command/Redis/ZINCRBY.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zincrby - * - * @author Daniele Alessandri */ class ZINCRBY extends RedisCommand { diff --git a/src/Command/Redis/ZINTERSTORE.php b/src/Command/Redis/ZINTERSTORE.php index 984ec10a..4e7c42fc 100644 --- a/src/Command/Redis/ZINTERSTORE.php +++ b/src/Command/Redis/ZINTERSTORE.php @@ -14,8 +14,6 @@ namespace Predis\Command\Redis; /** * @link http://redis.io/commands/zinterstore - * - * @author Daniele Alessandri */ class ZINTERSTORE extends ZUNIONSTORE { diff --git a/src/Command/Redis/ZLEXCOUNT.php b/src/Command/Redis/ZLEXCOUNT.php index 3d8b3f25..e9c0c81f 100644 --- a/src/Command/Redis/ZLEXCOUNT.php +++ b/src/Command/Redis/ZLEXCOUNT.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zlexcount - * - * @author Daniele Alessandri */ class ZLEXCOUNT extends RedisCommand { diff --git a/src/Command/Redis/ZPOPMAX.php b/src/Command/Redis/ZPOPMAX.php index 54259291..872d44b9 100644 --- a/src/Command/Redis/ZPOPMAX.php +++ b/src/Command/Redis/ZPOPMAX.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zpopmax - * - * @author Daniele Alessandri */ class ZPOPMAX extends RedisCommand { diff --git a/src/Command/Redis/ZPOPMIN.php b/src/Command/Redis/ZPOPMIN.php index d6459469..71d5c778 100644 --- a/src/Command/Redis/ZPOPMIN.php +++ b/src/Command/Redis/ZPOPMIN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zpopmin - * - * @author Daniele Alessandri */ class ZPOPMIN extends RedisCommand { diff --git a/src/Command/Redis/ZRANGE.php b/src/Command/Redis/ZRANGE.php index ead3b3f6..a262afd4 100644 --- a/src/Command/Redis/ZRANGE.php +++ b/src/Command/Redis/ZRANGE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zrange - * - * @author Daniele Alessandri */ class ZRANGE extends RedisCommand { diff --git a/src/Command/Redis/ZRANGEBYLEX.php b/src/Command/Redis/ZRANGEBYLEX.php index eef0d9c7..ba637b16 100644 --- a/src/Command/Redis/ZRANGEBYLEX.php +++ b/src/Command/Redis/ZRANGEBYLEX.php @@ -14,8 +14,6 @@ namespace Predis\Command\Redis; /** * @link http://redis.io/commands/zrangebylex - * - * @author Daniele Alessandri */ class ZRANGEBYLEX extends ZRANGE { diff --git a/src/Command/Redis/ZRANGEBYSCORE.php b/src/Command/Redis/ZRANGEBYSCORE.php index fb8eef92..6e59c530 100644 --- a/src/Command/Redis/ZRANGEBYSCORE.php +++ b/src/Command/Redis/ZRANGEBYSCORE.php @@ -14,8 +14,6 @@ namespace Predis\Command\Redis; /** * @link http://redis.io/commands/zrangebyscore - * - * @author Daniele Alessandri */ class ZRANGEBYSCORE extends ZRANGE { diff --git a/src/Command/Redis/ZRANK.php b/src/Command/Redis/ZRANK.php index 6e4a6adb..6e0a5d51 100644 --- a/src/Command/Redis/ZRANK.php +++ b/src/Command/Redis/ZRANK.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zrank - * - * @author Daniele Alessandri */ class ZRANK extends RedisCommand { diff --git a/src/Command/Redis/ZREM.php b/src/Command/Redis/ZREM.php index d37df916..3032f0aa 100644 --- a/src/Command/Redis/ZREM.php +++ b/src/Command/Redis/ZREM.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zrem - * - * @author Daniele Alessandri */ class ZREM extends RedisCommand { diff --git a/src/Command/Redis/ZREMRANGEBYLEX.php b/src/Command/Redis/ZREMRANGEBYLEX.php index d9d73cde..9ff503c4 100644 --- a/src/Command/Redis/ZREMRANGEBYLEX.php +++ b/src/Command/Redis/ZREMRANGEBYLEX.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zremrangebylex - * - * @author Daniele Alessandri */ class ZREMRANGEBYLEX extends RedisCommand { diff --git a/src/Command/Redis/ZREMRANGEBYRANK.php b/src/Command/Redis/ZREMRANGEBYRANK.php index 644b5627..6d302ae2 100644 --- a/src/Command/Redis/ZREMRANGEBYRANK.php +++ b/src/Command/Redis/ZREMRANGEBYRANK.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zremrangebyrank - * - * @author Daniele Alessandri */ class ZREMRANGEBYRANK extends RedisCommand { diff --git a/src/Command/Redis/ZREMRANGEBYSCORE.php b/src/Command/Redis/ZREMRANGEBYSCORE.php index 1d2e28d7..72e01a81 100644 --- a/src/Command/Redis/ZREMRANGEBYSCORE.php +++ b/src/Command/Redis/ZREMRANGEBYSCORE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zremrangebyscore - * - * @author Daniele Alessandri */ class ZREMRANGEBYSCORE extends RedisCommand { diff --git a/src/Command/Redis/ZREVRANGE.php b/src/Command/Redis/ZREVRANGE.php index fc8a6dec..5cee53fc 100644 --- a/src/Command/Redis/ZREVRANGE.php +++ b/src/Command/Redis/ZREVRANGE.php @@ -14,8 +14,6 @@ namespace Predis\Command\Redis; /** * @link http://redis.io/commands/zrevrange - * - * @author Daniele Alessandri */ class ZREVRANGE extends ZRANGE { diff --git a/src/Command/Redis/ZREVRANGEBYLEX.php b/src/Command/Redis/ZREVRANGEBYLEX.php index 6b25e7e9..28c7f7b7 100644 --- a/src/Command/Redis/ZREVRANGEBYLEX.php +++ b/src/Command/Redis/ZREVRANGEBYLEX.php @@ -14,8 +14,6 @@ namespace Predis\Command\Redis; /** * @link http://redis.io/commands/zrevrangebylex - * - * @author Daniele Alessandri */ class ZREVRANGEBYLEX extends ZRANGEBYLEX { diff --git a/src/Command/Redis/ZREVRANGEBYSCORE.php b/src/Command/Redis/ZREVRANGEBYSCORE.php index 367bbb8f..0f38bf00 100644 --- a/src/Command/Redis/ZREVRANGEBYSCORE.php +++ b/src/Command/Redis/ZREVRANGEBYSCORE.php @@ -14,8 +14,6 @@ namespace Predis\Command\Redis; /** * @link http://redis.io/commands/zrevrangebyscore - * - * @author Daniele Alessandri */ class ZREVRANGEBYSCORE extends ZRANGEBYSCORE { diff --git a/src/Command/Redis/ZREVRANK.php b/src/Command/Redis/ZREVRANK.php index b0926cb5..7848c9c5 100644 --- a/src/Command/Redis/ZREVRANK.php +++ b/src/Command/Redis/ZREVRANK.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zrevrank - * - * @author Daniele Alessandri */ class ZREVRANK extends RedisCommand { diff --git a/src/Command/Redis/ZSCAN.php b/src/Command/Redis/ZSCAN.php index 2b0b7586..01d6b6d6 100644 --- a/src/Command/Redis/ZSCAN.php +++ b/src/Command/Redis/ZSCAN.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zscan - * - * @author Daniele Alessandri */ class ZSCAN extends RedisCommand { diff --git a/src/Command/Redis/ZSCORE.php b/src/Command/Redis/ZSCORE.php index 774af7a1..e5dc9d17 100644 --- a/src/Command/Redis/ZSCORE.php +++ b/src/Command/Redis/ZSCORE.php @@ -16,8 +16,6 @@ use Predis\Command\Command as RedisCommand; /** * @link http://redis.io/commands/zscore - * - * @author Daniele Alessandri */ class ZSCORE extends RedisCommand { diff --git a/src/Command/Redis/ZUNIONSTORE.php b/src/Command/Redis/ZUNIONSTORE.php index 9256a5f6..8df68fdc 100644 --- a/src/Command/Redis/ZUNIONSTORE.php +++ b/src/Command/Redis/ZUNIONSTORE.php @@ -19,8 +19,6 @@ use Predis\Command\Traits\Weights; /** * @link http://redis.io/commands/zunionstore - * - * @author Daniele Alessandri */ class ZUNIONSTORE extends RedisCommand { diff --git a/src/Command/RedisFactory.php b/src/Command/RedisFactory.php index 731aa152..753138a8 100644 --- a/src/Command/RedisFactory.php +++ b/src/Command/RedisFactory.php @@ -20,8 +20,6 @@ namespace Predis\Command; * class in the Predis\Command\Redis namespace but this can be overridden for * any command ID simply by defining a new command handler class implementing * Predis\Command\CommandInterface. - * - * @author Daniele Alessandri */ class RedisFactory extends Factory { diff --git a/src/Command/ScriptCommand.php b/src/Command/ScriptCommand.php index 2b1ba2e8..db271e7b 100644 --- a/src/Command/ScriptCommand.php +++ b/src/Command/ScriptCommand.php @@ -17,8 +17,6 @@ namespace Predis\Command; * on Lua scripting with EVAL and EVALSHA. * * @link http://redis.io/commands/eval - * - * @author Daniele Alessandri */ abstract class ScriptCommand extends Command { diff --git a/src/CommunicationException.php b/src/CommunicationException.php index da0d6d75..e7ab3aaf 100644 --- a/src/CommunicationException.php +++ b/src/CommunicationException.php @@ -16,8 +16,6 @@ use Predis\Connection\NodeConnectionInterface; /** * Base exception class for network-related errors. - * - * @author Daniele Alessandri */ abstract class CommunicationException extends PredisException { diff --git a/src/Configuration/Option/Aggregate.php b/src/Configuration/Option/Aggregate.php index 9238f913..bf6a2eb7 100644 --- a/src/Configuration/Option/Aggregate.php +++ b/src/Configuration/Option/Aggregate.php @@ -26,8 +26,6 @@ use Predis\Connection\NodeConnectionInterface; * invoked by the client to create a new aggregate connection instance. * * Creation and configuration of the aggregate connection is up to the user. - * - * @author Daniele Alessandri */ class Aggregate implements OptionInterface { diff --git a/src/Configuration/Option/CRC16.php b/src/Configuration/Option/CRC16.php index 46bd94b9..096680d7 100644 --- a/src/Configuration/Option/CRC16.php +++ b/src/Configuration/Option/CRC16.php @@ -18,8 +18,6 @@ use Predis\Configuration\OptionsInterface; /** * Configures an hash generator used by the redis-cluster connection backend. - * - * @author Daniele Alessandri */ class CRC16 implements OptionInterface { diff --git a/src/Configuration/Option/Cluster.php b/src/Configuration/Option/Cluster.php index bd365721..34b33de4 100644 --- a/src/Configuration/Option/Cluster.php +++ b/src/Configuration/Option/Cluster.php @@ -22,8 +22,6 @@ use Predis\Connection\Cluster\RedisCluster; * Configures an aggregate connection used for clustering * multiple Redis nodes using various implementations with * different algorithms or strategies. - * - * @author Daniele Alessandri */ class Cluster extends Aggregate { diff --git a/src/Configuration/Option/Commands.php b/src/Configuration/Option/Commands.php index 24a29c8b..137227e2 100644 --- a/src/Configuration/Option/Commands.php +++ b/src/Configuration/Option/Commands.php @@ -20,8 +20,6 @@ use Predis\Configuration\OptionsInterface; /** * Configures a connection factory to be used by the client. - * - * @author Daniele Alessandri */ class Commands implements OptionInterface { diff --git a/src/Configuration/Option/Connections.php b/src/Configuration/Option/Connections.php index 9a122c6b..4d0349a8 100644 --- a/src/Configuration/Option/Connections.php +++ b/src/Configuration/Option/Connections.php @@ -25,8 +25,6 @@ use Predis\Connection\PhpiredisSocketConnection; * The client uses the connection factory to create the underlying connections * to single redis nodes in a single-server configuration or in replication and * cluster configurations. - * - * @author Daniele Alessandri */ class Connections implements OptionInterface { diff --git a/src/Configuration/Option/Exceptions.php b/src/Configuration/Option/Exceptions.php index 28cb9635..6834272f 100644 --- a/src/Configuration/Option/Exceptions.php +++ b/src/Configuration/Option/Exceptions.php @@ -18,8 +18,6 @@ use Predis\Configuration\OptionsInterface; /** * Configures whether consumers (such as the client) should throw exceptions on * Redis errors (-ERR responses) or just return instances of error responses. - * - * @author Daniele Alessandri */ class Exceptions implements OptionInterface { diff --git a/src/Configuration/Option/Prefix.php b/src/Configuration/Option/Prefix.php index 7201eb13..772454b3 100644 --- a/src/Configuration/Option/Prefix.php +++ b/src/Configuration/Option/Prefix.php @@ -20,8 +20,6 @@ use Predis\Configuration\OptionsInterface; /** * Configures a command processor that apply the specified prefix string to a * series of Redis commands considered prefixable. - * - * @author Daniele Alessandri */ class Prefix implements OptionInterface { diff --git a/src/Configuration/Option/Replication.php b/src/Configuration/Option/Replication.php index 4a865bb9..f9353201 100644 --- a/src/Configuration/Option/Replication.php +++ b/src/Configuration/Option/Replication.php @@ -21,8 +21,6 @@ use Predis\Connection\Replication\SentinelReplication; /** * Configures an aggregate connection used for master/slave replication among * multiple Redis nodes. - * - * @author Daniele Alessandri */ class Replication extends Aggregate { diff --git a/src/Configuration/OptionInterface.php b/src/Configuration/OptionInterface.php index be2f90a3..538fc0ba 100644 --- a/src/Configuration/OptionInterface.php +++ b/src/Configuration/OptionInterface.php @@ -15,8 +15,6 @@ namespace Predis\Configuration; /** * Defines an handler used by Predis\Configuration\Options to filter, validate * or return default values for a given option. - * - * @author Daniele Alessandri */ interface OptionInterface { diff --git a/src/Configuration/Options.php b/src/Configuration/Options.php index ee104311..de6504f7 100644 --- a/src/Configuration/Options.php +++ b/src/Configuration/Options.php @@ -19,8 +19,6 @@ namespace Predis\Configuration; * an lazily initialize values in a mini-DI container approach. * * {@inheritdoc} - * - * @author Daniele Alessandri */ class Options implements OptionsInterface { diff --git a/src/Configuration/OptionsInterface.php b/src/Configuration/OptionsInterface.php index 9962aa96..7fc98e91 100644 --- a/src/Configuration/OptionsInterface.php +++ b/src/Configuration/OptionsInterface.php @@ -21,8 +21,6 @@ use Predis\Command\Processor\ProcessorInterface; * @property-read ProcessorInterface $prefix Key prefixing strategy using the supplied string as prefix * @property-read Command\FactoryInterface $commands Command factory for creating Redis commands * @property-read callable $replication Aggregate connection initializer for replication - * - * @author Daniele Alessandri */ interface OptionsInterface { diff --git a/src/Connection/AbstractConnection.php b/src/Connection/AbstractConnection.php index 09549c0a..b4947734 100644 --- a/src/Connection/AbstractConnection.php +++ b/src/Connection/AbstractConnection.php @@ -19,8 +19,6 @@ use Predis\Protocol\ProtocolException; /** * Base class with the common logic used by connection classes to communicate * with Redis. - * - * @author Daniele Alessandri */ abstract class AbstractConnection implements NodeConnectionInterface { diff --git a/src/Connection/AggregateConnectionInterface.php b/src/Connection/AggregateConnectionInterface.php index ce0144ea..8864bba5 100644 --- a/src/Connection/AggregateConnectionInterface.php +++ b/src/Connection/AggregateConnectionInterface.php @@ -17,8 +17,6 @@ use Predis\Command\CommandInterface; /** * Defines a virtual connection composed of multiple connection instances to * single Redis nodes. - * - * @author Daniele Alessandri */ interface AggregateConnectionInterface extends ConnectionInterface { diff --git a/src/Connection/Cluster/ClusterInterface.php b/src/Connection/Cluster/ClusterInterface.php index 0f31f7a0..79c6f96e 100644 --- a/src/Connection/Cluster/ClusterInterface.php +++ b/src/Connection/Cluster/ClusterInterface.php @@ -17,8 +17,6 @@ use Predis\Connection\AggregateConnectionInterface; /** * Defines a cluster of Redis servers formed by aggregating multiple connection * instances to single Redis nodes. - * - * @author Daniele Alessandri */ interface ClusterInterface extends AggregateConnectionInterface { diff --git a/src/Connection/Cluster/PredisCluster.php b/src/Connection/Cluster/PredisCluster.php index 6d0777c5..4beacc2f 100644 --- a/src/Connection/Cluster/PredisCluster.php +++ b/src/Connection/Cluster/PredisCluster.php @@ -22,8 +22,6 @@ use Predis\NotSupportedException; * Abstraction for a cluster of aggregate connections to various Redis servers * implementing client-side sharding based on pluggable distribution strategies. * - * @author Daniele Alessandri - * * @todo Add the ability to remove connections from pool. */ class PredisCluster implements ClusterInterface, \IteratorAggregate, \Countable diff --git a/src/Connection/Cluster/RedisCluster.php b/src/Connection/Cluster/RedisCluster.php index 0edcca84..5a7f160e 100644 --- a/src/Connection/Cluster/RedisCluster.php +++ b/src/Connection/Cluster/RedisCluster.php @@ -45,8 +45,6 @@ use Predis\Response\Error as ErrorResponse; * of the nodes and optionally enable such a behaviour upon -MOVED redirections. * Asking for the cluster configuration to Redis is actually done by issuing a * CLUSTER SLOTS command to a random node in the pool. - * - * @author Daniele Alessandri */ class RedisCluster implements ClusterInterface, \IteratorAggregate, \Countable { diff --git a/src/Connection/CompositeConnectionInterface.php b/src/Connection/CompositeConnectionInterface.php index def58761..9ec18a78 100644 --- a/src/Connection/CompositeConnectionInterface.php +++ b/src/Connection/CompositeConnectionInterface.php @@ -15,8 +15,6 @@ namespace Predis\Connection; /** * Defines a connection to communicate with a single Redis server that leverages * an external protocol processor to handle pluggable protocol handlers. - * - * @author Daniele Alessandri */ interface CompositeConnectionInterface extends NodeConnectionInterface { diff --git a/src/Connection/CompositeStreamConnection.php b/src/Connection/CompositeStreamConnection.php index 2300f921..763ef42a 100644 --- a/src/Connection/CompositeStreamConnection.php +++ b/src/Connection/CompositeStreamConnection.php @@ -19,8 +19,6 @@ use Predis\Protocol\Text\ProtocolProcessor as TextProtocolProcessor; /** * Connection abstraction to Redis servers based on PHP's stream that uses an * external protocol processor defining the protocol used for the communication. - * - * @author Daniele Alessandri */ class CompositeStreamConnection extends StreamConnection implements CompositeConnectionInterface { diff --git a/src/Connection/ConnectionException.php b/src/Connection/ConnectionException.php index 2c439535..77e7a15a 100644 --- a/src/Connection/ConnectionException.php +++ b/src/Connection/ConnectionException.php @@ -16,8 +16,6 @@ use Predis\CommunicationException; /** * Exception class that identifies connection-related errors. - * - * @author Daniele Alessandri */ class ConnectionException extends CommunicationException { diff --git a/src/Connection/ConnectionInterface.php b/src/Connection/ConnectionInterface.php index 2efbcc78..fc201461 100644 --- a/src/Connection/ConnectionInterface.php +++ b/src/Connection/ConnectionInterface.php @@ -17,8 +17,6 @@ use Predis\Command\CommandInterface; /** * Defines a connection object used to communicate with one or multiple * Redis servers. - * - * @author Daniele Alessandri */ interface ConnectionInterface { diff --git a/src/Connection/Factory.php b/src/Connection/Factory.php index 367728d9..be5c85a5 100644 --- a/src/Connection/Factory.php +++ b/src/Connection/Factory.php @@ -16,8 +16,6 @@ use Predis\Command\RawCommand; /** * Standard connection factory for creating connections to Redis nodes. - * - * @author Daniele Alessandri */ class Factory implements FactoryInterface { diff --git a/src/Connection/FactoryInterface.php b/src/Connection/FactoryInterface.php index 20b40814..24dc782a 100644 --- a/src/Connection/FactoryInterface.php +++ b/src/Connection/FactoryInterface.php @@ -14,8 +14,6 @@ namespace Predis\Connection; /** * Interface for classes providing a factory of connections to Redis nodes. - * - * @author Daniele Alessandri */ interface FactoryInterface { diff --git a/src/Connection/NodeConnectionInterface.php b/src/Connection/NodeConnectionInterface.php index d3569e8a..71333177 100644 --- a/src/Connection/NodeConnectionInterface.php +++ b/src/Connection/NodeConnectionInterface.php @@ -16,8 +16,6 @@ use Predis\Command\CommandInterface; /** * Defines a connection used to communicate with a single Redis node. - * - * @author Daniele Alessandri */ interface NodeConnectionInterface extends ConnectionInterface { diff --git a/src/Connection/Parameters.php b/src/Connection/Parameters.php index 6b0969fa..bfc0c31d 100644 --- a/src/Connection/Parameters.php +++ b/src/Connection/Parameters.php @@ -16,8 +16,6 @@ namespace Predis\Connection; * Container for connection parameters used to initialize connections to Redis. * * {@inheritdoc} - * - * @author Daniele Alessandri */ class Parameters implements ParametersInterface { diff --git a/src/Connection/ParametersInterface.php b/src/Connection/ParametersInterface.php index 89f22ac3..43e7ffd3 100644 --- a/src/Connection/ParametersInterface.php +++ b/src/Connection/ParametersInterface.php @@ -31,8 +31,6 @@ namespace Predis\Connection; * @property-read bool persistent Leaves the connection open after a GC collection. * @property-read string password Password to access Redis (see the AUTH command). * @property-read string database Database index (see the SELECT command). - * - * @author Daniele Alessandri */ interface ParametersInterface { diff --git a/src/Connection/PhpiredisSocketConnection.php b/src/Connection/PhpiredisSocketConnection.php index 7e6dc645..23f83fba 100644 --- a/src/Connection/PhpiredisSocketConnection.php +++ b/src/Connection/PhpiredisSocketConnection.php @@ -42,8 +42,6 @@ use Predis\Response\Status as StatusResponse; * - read_write_timeout: timeout of read / write operations. * * @link http://github.com/nrk/phpiredis - * - * @author Daniele Alessandri */ class PhpiredisSocketConnection extends AbstractConnection { diff --git a/src/Connection/PhpiredisStreamConnection.php b/src/Connection/PhpiredisStreamConnection.php index 4f9bf0fc..96db91db 100644 --- a/src/Connection/PhpiredisStreamConnection.php +++ b/src/Connection/PhpiredisStreamConnection.php @@ -44,8 +44,6 @@ use Predis\Response\Status as StatusResponse; * - persistent: the connection is left intact after a GC collection. * * @link https://github.com/nrk/phpiredis - * - * @author Daniele Alessandri */ class PhpiredisStreamConnection extends StreamConnection { diff --git a/src/Connection/Replication/MasterSlaveReplication.php b/src/Connection/Replication/MasterSlaveReplication.php index 3079a5fb..0eb87f29 100644 --- a/src/Connection/Replication/MasterSlaveReplication.php +++ b/src/Connection/Replication/MasterSlaveReplication.php @@ -25,8 +25,6 @@ use Predis\Response\ErrorInterface as ResponseErrorInterface; /** * Aggregate connection handling replication of Redis nodes configured in a * single master / multiple slaves setup. - * - * @author Daniele Alessandri */ class MasterSlaveReplication implements ReplicationInterface { diff --git a/src/Connection/Replication/ReplicationInterface.php b/src/Connection/Replication/ReplicationInterface.php index 4aa00045..1a7dcbee 100644 --- a/src/Connection/Replication/ReplicationInterface.php +++ b/src/Connection/Replication/ReplicationInterface.php @@ -17,8 +17,6 @@ use Predis\Connection\NodeConnectionInterface; /** * Defines a group of Redis nodes in a master / slave replication setup. - * - * @author Daniele Alessandri */ interface ReplicationInterface extends AggregateConnectionInterface { diff --git a/src/Connection/StreamConnection.php b/src/Connection/StreamConnection.php index 7e3c0fd4..fb0133cd 100644 --- a/src/Connection/StreamConnection.php +++ b/src/Connection/StreamConnection.php @@ -31,8 +31,6 @@ use Predis\Response\Status as StatusResponse; * - tcp_nodelay: enables or disables Nagle's algorithm for coalescing. * - persistent: the connection is left intact after a GC collection. * - ssl: context options array (see http://php.net/manual/en/context.ssl.php) - * - * @author Daniele Alessandri */ class StreamConnection extends AbstractConnection { diff --git a/src/Connection/WebdisConnection.php b/src/Connection/WebdisConnection.php index 70d2a836..a03f136f 100644 --- a/src/Connection/WebdisConnection.php +++ b/src/Connection/WebdisConnection.php @@ -41,8 +41,6 @@ use Predis\Response\Status as StatusResponse; * @link http://webd.is * @link http://github.com/nicolasff/webdis * @link http://github.com/seppo0010/phpiredis - * - * @author Daniele Alessandri */ class WebdisConnection implements NodeConnectionInterface { diff --git a/src/Monitor/Consumer.php b/src/Monitor/Consumer.php index a0e66685..05e0a689 100644 --- a/src/Monitor/Consumer.php +++ b/src/Monitor/Consumer.php @@ -18,8 +18,6 @@ use Predis\NotSupportedException; /** * Redis MONITOR consumer. - * - * @author Daniele Alessandri */ class Consumer implements \Iterator { diff --git a/src/NotSupportedException.php b/src/NotSupportedException.php index 4b9de2de..037696b6 100644 --- a/src/NotSupportedException.php +++ b/src/NotSupportedException.php @@ -15,8 +15,6 @@ namespace Predis; /** * Exception class thrown when trying to use features not supported by certain * classes or abstractions of Predis. - * - * @author Daniele Alessandri */ class NotSupportedException extends PredisException { diff --git a/src/Pipeline/Atomic.php b/src/Pipeline/Atomic.php index 2a4ecd8a..dcf5efb0 100644 --- a/src/Pipeline/Atomic.php +++ b/src/Pipeline/Atomic.php @@ -22,8 +22,6 @@ use Predis\Response\ServerException; /** * Command pipeline wrapped into a MULTI / EXEC transaction. - * - * @author Daniele Alessandri */ class Atomic extends Pipeline { diff --git a/src/Pipeline/ConnectionErrorProof.php b/src/Pipeline/ConnectionErrorProof.php index f938ac34..0c5a30c4 100644 --- a/src/Pipeline/ConnectionErrorProof.php +++ b/src/Pipeline/ConnectionErrorProof.php @@ -23,8 +23,6 @@ use Predis\NotSupportedException; * returns the exception instances as the rest of the response elements. * * @todo Awful naming! - * - * @author Daniele Alessandri */ class ConnectionErrorProof extends Pipeline { diff --git a/src/Pipeline/FireAndForget.php b/src/Pipeline/FireAndForget.php index 26dbfa14..1fef32c6 100644 --- a/src/Pipeline/FireAndForget.php +++ b/src/Pipeline/FireAndForget.php @@ -16,8 +16,6 @@ use Predis\Connection\ConnectionInterface; /** * Command pipeline that writes commands to the servers but discards responses. - * - * @author Daniele Alessandri */ class FireAndForget extends Pipeline { diff --git a/src/Pipeline/Pipeline.php b/src/Pipeline/Pipeline.php index cb293531..6a97aa3b 100644 --- a/src/Pipeline/Pipeline.php +++ b/src/Pipeline/Pipeline.php @@ -27,8 +27,6 @@ use Predis\Response\ServerException; * Redis commands are pipelined to alleviate the effects of network round-trips. * * {@inheritdoc} - * - * @author Daniele Alessandri */ class Pipeline implements ClientContextInterface { diff --git a/src/PredisException.php b/src/PredisException.php index ffd3e0ff..d185870d 100644 --- a/src/PredisException.php +++ b/src/PredisException.php @@ -14,8 +14,6 @@ namespace Predis; /** * Base exception class for Predis-related errors. - * - * @author Daniele Alessandri */ abstract class PredisException extends \Exception { diff --git a/src/Protocol/ProtocolException.php b/src/Protocol/ProtocolException.php index 4e6c6234..b6ab078a 100644 --- a/src/Protocol/ProtocolException.php +++ b/src/Protocol/ProtocolException.php @@ -17,8 +17,6 @@ use Predis\CommunicationException; /** * Exception used to identify errors encountered while parsing the Redis wire * protocol. - * - * @author Daniele Alessandri */ class ProtocolException extends CommunicationException { diff --git a/src/Protocol/ProtocolProcessorInterface.php b/src/Protocol/ProtocolProcessorInterface.php index 7a12b857..c36a9bb3 100644 --- a/src/Protocol/ProtocolProcessorInterface.php +++ b/src/Protocol/ProtocolProcessorInterface.php @@ -18,8 +18,6 @@ use Predis\Connection\CompositeConnectionInterface; /** * Defines a pluggable protocol processor capable of serializing commands and * deserializing responses into PHP objects directly from a connection. - * - * @author Daniele Alessandri */ interface ProtocolProcessorInterface { diff --git a/src/Protocol/RequestSerializerInterface.php b/src/Protocol/RequestSerializerInterface.php index 06abb242..ba2a14f4 100644 --- a/src/Protocol/RequestSerializerInterface.php +++ b/src/Protocol/RequestSerializerInterface.php @@ -16,8 +16,6 @@ use Predis\Command\CommandInterface; /** * Defines a pluggable serializer for Redis commands. - * - * @author Daniele Alessandri */ interface RequestSerializerInterface { diff --git a/src/Protocol/ResponseReaderInterface.php b/src/Protocol/ResponseReaderInterface.php index f50a9598..ce9c0939 100644 --- a/src/Protocol/ResponseReaderInterface.php +++ b/src/Protocol/ResponseReaderInterface.php @@ -17,8 +17,6 @@ use Predis\Connection\CompositeConnectionInterface; /** * Defines a pluggable reader capable of parsing responses returned by Redis and * deserializing them to PHP objects. - * - * @author Daniele Alessandri */ interface ResponseReaderInterface { diff --git a/src/Protocol/Text/CompositeProtocolProcessor.php b/src/Protocol/Text/CompositeProtocolProcessor.php index 6fb698e5..83f88949 100644 --- a/src/Protocol/Text/CompositeProtocolProcessor.php +++ b/src/Protocol/Text/CompositeProtocolProcessor.php @@ -23,8 +23,6 @@ use Predis\Protocol\ResponseReaderInterface; * pluggable handlers to serialize requests and deserialize responses. * * @link http://redis.io/topics/protocol - * - * @author Daniele Alessandri */ class CompositeProtocolProcessor implements ProtocolProcessorInterface { diff --git a/src/Protocol/Text/Handler/BulkResponse.php b/src/Protocol/Text/Handler/BulkResponse.php index 96d70a54..67118f58 100644 --- a/src/Protocol/Text/Handler/BulkResponse.php +++ b/src/Protocol/Text/Handler/BulkResponse.php @@ -21,8 +21,6 @@ use Predis\Protocol\ProtocolException; * It translates the payload to a string or a NULL. * * @link http://redis.io/topics/protocol - * - * @author Daniele Alessandri */ class BulkResponse implements ResponseHandlerInterface { diff --git a/src/Protocol/Text/Handler/ErrorResponse.php b/src/Protocol/Text/Handler/ErrorResponse.php index f40b326b..fe44e066 100644 --- a/src/Protocol/Text/Handler/ErrorResponse.php +++ b/src/Protocol/Text/Handler/ErrorResponse.php @@ -20,8 +20,6 @@ use Predis\Response\Error; * It translates the payload to a complex response object for Predis. * * @link http://redis.io/topics/protocol - * - * @author Daniele Alessandri */ class ErrorResponse implements ResponseHandlerInterface { diff --git a/src/Protocol/Text/Handler/IntegerResponse.php b/src/Protocol/Text/Handler/IntegerResponse.php index 91b8a1c7..390dc648 100644 --- a/src/Protocol/Text/Handler/IntegerResponse.php +++ b/src/Protocol/Text/Handler/IntegerResponse.php @@ -21,8 +21,6 @@ use Predis\Protocol\ProtocolException; * It translates the payload an integer or NULL. * * @link http://redis.io/topics/protocol - * - * @author Daniele Alessandri */ class IntegerResponse implements ResponseHandlerInterface { diff --git a/src/Protocol/Text/Handler/MultiBulkResponse.php b/src/Protocol/Text/Handler/MultiBulkResponse.php index e66a7c5c..18ca13d9 100644 --- a/src/Protocol/Text/Handler/MultiBulkResponse.php +++ b/src/Protocol/Text/Handler/MultiBulkResponse.php @@ -21,8 +21,6 @@ use Predis\Protocol\ProtocolException; * It returns multibulk responses as PHP arrays. * * @link http://redis.io/topics/protocol - * - * @author Daniele Alessandri */ class MultiBulkResponse implements ResponseHandlerInterface { diff --git a/src/Protocol/Text/Handler/ResponseHandlerInterface.php b/src/Protocol/Text/Handler/ResponseHandlerInterface.php index 9b66d506..b1c90665 100644 --- a/src/Protocol/Text/Handler/ResponseHandlerInterface.php +++ b/src/Protocol/Text/Handler/ResponseHandlerInterface.php @@ -16,8 +16,6 @@ use Predis\Connection\CompositeConnectionInterface; /** * Defines a pluggable handler used to parse a particular type of response. - * - * @author Daniele Alessandri */ interface ResponseHandlerInterface { diff --git a/src/Protocol/Text/Handler/StatusResponse.php b/src/Protocol/Text/Handler/StatusResponse.php index 43d808e4..4d2b3cde 100644 --- a/src/Protocol/Text/Handler/StatusResponse.php +++ b/src/Protocol/Text/Handler/StatusResponse.php @@ -21,8 +21,6 @@ use Predis\Response\Status; * the payload as a string. * * @link http://redis.io/topics/protocol - * - * @author Daniele Alessandri */ class StatusResponse implements ResponseHandlerInterface { diff --git a/src/Protocol/Text/Handler/StreamableMultiBulkResponse.php b/src/Protocol/Text/Handler/StreamableMultiBulkResponse.php index 5985003e..31db8c66 100644 --- a/src/Protocol/Text/Handler/StreamableMultiBulkResponse.php +++ b/src/Protocol/Text/Handler/StreamableMultiBulkResponse.php @@ -25,8 +25,6 @@ use Predis\Response\Iterator\MultiBulk as MultiBulkIterator; * built-in into Predis, such as transactions or pipelines. Use them with care! * * @link http://redis.io/topics/protocol - * - * @author Daniele Alessandri */ class StreamableMultiBulkResponse implements ResponseHandlerInterface { diff --git a/src/Protocol/Text/ProtocolProcessor.php b/src/Protocol/Text/ProtocolProcessor.php index b53f3717..d3573eeb 100644 --- a/src/Protocol/Text/ProtocolProcessor.php +++ b/src/Protocol/Text/ProtocolProcessor.php @@ -25,8 +25,6 @@ use Predis\Response\Status as StatusResponse; * Protocol processor for the standard Redis wire protocol. * * @link http://redis.io/topics/protocol - * - * @author Daniele Alessandri */ class ProtocolProcessor implements ProtocolProcessorInterface { diff --git a/src/Protocol/Text/RequestSerializer.php b/src/Protocol/Text/RequestSerializer.php index 4891c58b..15a6d3b6 100644 --- a/src/Protocol/Text/RequestSerializer.php +++ b/src/Protocol/Text/RequestSerializer.php @@ -19,8 +19,6 @@ use Predis\Protocol\RequestSerializerInterface; * Request serializer for the standard Redis wire protocol. * * @link http://redis.io/topics/protocol - * - * @author Daniele Alessandri */ class RequestSerializer implements RequestSerializerInterface { diff --git a/src/Protocol/Text/ResponseReader.php b/src/Protocol/Text/ResponseReader.php index 5dc6ad1e..90e65f6e 100644 --- a/src/Protocol/Text/ResponseReader.php +++ b/src/Protocol/Text/ResponseReader.php @@ -21,8 +21,6 @@ use Predis\Protocol\ResponseReaderInterface; * Response reader for the standard Redis wire protocol. * * @link http://redis.io/topics/protocol - * - * @author Daniele Alessandri */ class ResponseReader implements ResponseReaderInterface { diff --git a/src/PubSub/AbstractConsumer.php b/src/PubSub/AbstractConsumer.php index 8907388f..e5fb3e0d 100644 --- a/src/PubSub/AbstractConsumer.php +++ b/src/PubSub/AbstractConsumer.php @@ -14,8 +14,6 @@ namespace Predis\PubSub; /** * Base implementation of a PUB/SUB consumer abstraction based on PHP iterators. - * - * @author Daniele Alessandri */ abstract class AbstractConsumer implements \Iterator { diff --git a/src/PubSub/Consumer.php b/src/PubSub/Consumer.php index 5ba3cf17..3057d853 100644 --- a/src/PubSub/Consumer.php +++ b/src/PubSub/Consumer.php @@ -20,8 +20,6 @@ use Predis\NotSupportedException; /** * PUB/SUB consumer abstraction. - * - * @author Daniele Alessandri */ class Consumer extends AbstractConsumer { diff --git a/src/PubSub/DispatcherLoop.php b/src/PubSub/DispatcherLoop.php index d3e0acf7..a81245e0 100644 --- a/src/PubSub/DispatcherLoop.php +++ b/src/PubSub/DispatcherLoop.php @@ -15,8 +15,6 @@ namespace Predis\PubSub; /** * Method-dispatcher loop built around the client-side abstraction of a Redis * PUB / SUB context. - * - * @author Daniele Alessandri */ class DispatcherLoop { diff --git a/src/Replication/MissingMasterException.php b/src/Replication/MissingMasterException.php index 55d90cd9..d30c259d 100644 --- a/src/Replication/MissingMasterException.php +++ b/src/Replication/MissingMasterException.php @@ -16,8 +16,6 @@ use Predis\ClientException; /** * Exception class that identifies when master is missing in a replication setup. - * - * @author Daniele Alessandri */ class MissingMasterException extends ClientException { diff --git a/src/Replication/ReplicationStrategy.php b/src/Replication/ReplicationStrategy.php index 459e1a16..0c490c63 100644 --- a/src/Replication/ReplicationStrategy.php +++ b/src/Replication/ReplicationStrategy.php @@ -17,8 +17,6 @@ use Predis\NotSupportedException; /** * Defines a strategy for master/slave replication. - * - * @author Daniele Alessandri */ class ReplicationStrategy { diff --git a/src/Replication/RoleException.php b/src/Replication/RoleException.php index 7b0b9380..968b7e2c 100644 --- a/src/Replication/RoleException.php +++ b/src/Replication/RoleException.php @@ -17,8 +17,6 @@ use Predis\CommunicationException; /** * Exception class that identifies a role mismatch when connecting to node * managed by redis-sentinel. - * - * @author Daniele Alessandri */ class RoleException extends CommunicationException { diff --git a/src/Response/Error.php b/src/Response/Error.php index 31a76893..39a147f5 100644 --- a/src/Response/Error.php +++ b/src/Response/Error.php @@ -15,8 +15,6 @@ namespace Predis\Response; /** * Represents an error returned by Redis (-ERR responses) during the execution * of a command on the server. - * - * @author Daniele Alessandri */ class Error implements ErrorInterface { diff --git a/src/Response/ErrorInterface.php b/src/Response/ErrorInterface.php index cab7feeb..ac3bb16e 100644 --- a/src/Response/ErrorInterface.php +++ b/src/Response/ErrorInterface.php @@ -15,8 +15,6 @@ namespace Predis\Response; /** * Represents an error returned by Redis (responses identified by "-" in the * Redis protocol) during the execution of an operation on the server. - * - * @author Daniele Alessandri */ interface ErrorInterface extends ResponseInterface { diff --git a/src/Response/Iterator/MultiBulk.php b/src/Response/Iterator/MultiBulk.php index 823b5c23..09f4c08e 100644 --- a/src/Response/Iterator/MultiBulk.php +++ b/src/Response/Iterator/MultiBulk.php @@ -16,8 +16,6 @@ use Predis\Connection\NodeConnectionInterface; /** * Streamable multibulk response. - * - * @author Daniele Alessandri */ class MultiBulk extends MultiBulkIterator { diff --git a/src/Response/Iterator/MultiBulkIterator.php b/src/Response/Iterator/MultiBulkIterator.php index 0ea4d2b9..21d9e73a 100644 --- a/src/Response/Iterator/MultiBulkIterator.php +++ b/src/Response/Iterator/MultiBulkIterator.php @@ -23,8 +23,6 @@ use Predis\Response\ResponseInterface; * * Always make sure that the whole iteration is consumed (or dropped) to prevent * protocol desynchronization issues. - * - * @author Daniele Alessandri */ abstract class MultiBulkIterator implements \Iterator, \Countable, ResponseInterface { diff --git a/src/Response/Iterator/MultiBulkTuple.php b/src/Response/Iterator/MultiBulkTuple.php index 8d46faa8..b0f9c3d5 100644 --- a/src/Response/Iterator/MultiBulkTuple.php +++ b/src/Response/Iterator/MultiBulkTuple.php @@ -18,8 +18,6 @@ namespace Predis\Response\Iterator; * * This wrapper is useful for responses to commands such as `HGETALL` that can * be iterater as $key => $value pairs. - * - * @author Daniele Alessandri */ class MultiBulkTuple extends MultiBulk implements \OuterIterator { diff --git a/src/Response/ResponseInterface.php b/src/Response/ResponseInterface.php index 85162efc..d2f68280 100644 --- a/src/Response/ResponseInterface.php +++ b/src/Response/ResponseInterface.php @@ -14,8 +14,6 @@ namespace Predis\Response; /** * Represents a complex response object from Redis. - * - * @author Daniele Alessandri */ interface ResponseInterface { diff --git a/src/Response/ServerException.php b/src/Response/ServerException.php index 3abc3a43..e61b2f95 100644 --- a/src/Response/ServerException.php +++ b/src/Response/ServerException.php @@ -16,8 +16,6 @@ use Predis\PredisException; /** * Exception class that identifies server-side Redis errors. - * - * @author Daniele Alessandri */ class ServerException extends PredisException implements ErrorInterface { diff --git a/src/Response/Status.php b/src/Response/Status.php index 3d7ac263..80cab930 100644 --- a/src/Response/Status.php +++ b/src/Response/Status.php @@ -14,8 +14,6 @@ namespace Predis\Response; /** * Represents a status response returned by Redis. - * - * @author Daniele Alessandri */ class Status implements ResponseInterface { diff --git a/src/Session/Handler.php b/src/Session/Handler.php index cb1e9f75..0ba52ef0 100644 --- a/src/Session/Handler.php +++ b/src/Session/Handler.php @@ -21,8 +21,6 @@ use Predis\ClientInterface; * This class is mostly intended for PHP 5.4 but it can be used under PHP 5.3 * provided that a polyfill for `SessionHandlerInterface` is defined by either * you or an external package such as `symfony/http-foundation`. - * - * @author Daniele Alessandri */ class Handler implements \SessionHandlerInterface { diff --git a/src/Transaction/AbortedMultiExecException.php b/src/Transaction/AbortedMultiExecException.php index 2c84a54e..75fc0bb0 100644 --- a/src/Transaction/AbortedMultiExecException.php +++ b/src/Transaction/AbortedMultiExecException.php @@ -16,8 +16,6 @@ use Predis\PredisException; /** * Exception class that identifies a MULTI / EXEC transaction aborted by Redis. - * - * @author Daniele Alessandri */ class AbortedMultiExecException extends PredisException { diff --git a/src/Transaction/MultiExec.php b/src/Transaction/MultiExec.php index be69fb13..5be74487 100644 --- a/src/Transaction/MultiExec.php +++ b/src/Transaction/MultiExec.php @@ -28,8 +28,6 @@ use Predis\Response\Status as StatusResponse; * Client-side abstraction of a Redis transaction based on MULTI / EXEC. * * {@inheritdoc} - * - * @author Daniele Alessandri */ class MultiExec implements ClientContextInterface { diff --git a/src/Transaction/MultiExecState.php b/src/Transaction/MultiExecState.php index f4c451bb..8dc78437 100644 --- a/src/Transaction/MultiExecState.php +++ b/src/Transaction/MultiExecState.php @@ -14,8 +14,6 @@ namespace Predis\Transaction; /** * Utility class used to track the state of a MULTI / EXEC transaction. - * - * @author Daniele Alessandri */ class MultiExecState {