Make some fields of Predis\Client private.

This commit is contained in:
Daniele Alessandri
2016-06-07 15:52:27 +02:00
parent 64b3a4805c
commit 185e31e080
+13 -2
View File
@@ -43,8 +43,19 @@ class Client implements ClientInterface, \IteratorAggregate
{
const VERSION = '2.0.0-dev';
protected $connection;
protected $options;
/**
* @var Predis\Configuration\OptionsInterface
*/
private $options;
/**
* @var Predis\Connection\ConnectionInterface
*/
private $connection;
/**
* @var Predis\Command\FactoryInterface
*/
private $commands;
/**