add docblocks to MasterSlaveReplication

This commit is contained in:
Ante Lucic
2016-05-05 14:22:32 +02:00
committed by Daniele Alessandri
parent e0329d6c74
commit c45bb15767
@@ -23,9 +23,24 @@ use Predis\Replication\ReplicationStrategy;
*/
class MasterSlaveReplication implements ReplicationInterface
{
/**
* @var ReplicationStrategy
*/
protected $strategy;
/**
* @var NodeConnectionInterface
*/
protected $master;
/**
* @var NodeConnectionInterface[]
*/
protected $slaves;
/**
* @var NodeConnectionInterface
*/
protected $current;
/**