mirror of
https://github.com/predis/predis.git
synced 2026-08-19 01:51:40 +00:00
Make some fields of Predis\Client private.
This commit is contained in:
+13
-2
@@ -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;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user