Skip to content

Commit 60e83c1

Browse files
committed
Increased visibility of ConnectionManager properties to protected
1 parent 3f16343 commit 60e83c1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Manager/ConnectionManager.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -20,52 +20,52 @@ class ConnectionManager
2020
/**
2121
* @var string The unique connection manager name (the key from the index configuration)
2222
*/
23-
private $connectionName;
23+
protected $connectionName;
2424

2525
/**
2626
* @var Client
2727
*/
28-
private $client;
28+
protected $client;
2929

3030
/**
3131
* @var array
3232
*/
33-
private $connectionSettings;
33+
protected $connectionSettings;
3434

3535
/**
3636
* @var BulkQueryItem[] Container for bulk queries.
3737
*/
38-
private $bulkQueries;
38+
protected $bulkQueries;
3939

4040
/**
4141
* @var array Holder for consistency, refresh and replication parameters.
4242
*/
43-
private $bulkParams;
43+
protected $bulkParams;
4444

4545
/**
4646
* @var LoggerInterface
4747
*/
48-
private $logger;
48+
protected $logger;
4949

5050
/**
5151
* @var LoggerInterface
5252
*/
53-
private $tracer;
53+
protected $tracer;
5454

5555
/**
5656
* @var bool
5757
*/
58-
private $autocommit;
58+
protected $autocommit;
5959

6060
/**
6161
* @var EventDispatcherInterface
6262
*/
63-
private $eventDispatcher;
63+
protected $eventDispatcher;
6464

6565
/**
6666
* @var bool
6767
*/
68-
private $kernelDebug;
68+
protected $kernelDebug;
6969

7070
/**
7171
* @param string $connectionName The unique connection name

0 commit comments

Comments
 (0)