File tree 1 file changed +10
-10
lines changed
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -20,52 +20,52 @@ class ConnectionManager
20
20
/**
21
21
* @var string The unique connection manager name (the key from the index configuration)
22
22
*/
23
- private $ connectionName ;
23
+ protected $ connectionName ;
24
24
25
25
/**
26
26
* @var Client
27
27
*/
28
- private $ client ;
28
+ protected $ client ;
29
29
30
30
/**
31
31
* @var array
32
32
*/
33
- private $ connectionSettings ;
33
+ protected $ connectionSettings ;
34
34
35
35
/**
36
36
* @var BulkQueryItem[] Container for bulk queries.
37
37
*/
38
- private $ bulkQueries ;
38
+ protected $ bulkQueries ;
39
39
40
40
/**
41
41
* @var array Holder for consistency, refresh and replication parameters.
42
42
*/
43
- private $ bulkParams ;
43
+ protected $ bulkParams ;
44
44
45
45
/**
46
46
* @var LoggerInterface
47
47
*/
48
- private $ logger ;
48
+ protected $ logger ;
49
49
50
50
/**
51
51
* @var LoggerInterface
52
52
*/
53
- private $ tracer ;
53
+ protected $ tracer ;
54
54
55
55
/**
56
56
* @var bool
57
57
*/
58
- private $ autocommit ;
58
+ protected $ autocommit ;
59
59
60
60
/**
61
61
* @var EventDispatcherInterface
62
62
*/
63
- private $ eventDispatcher ;
63
+ protected $ eventDispatcher ;
64
64
65
65
/**
66
66
* @var bool
67
67
*/
68
- private $ kernelDebug ;
68
+ protected $ kernelDebug ;
69
69
70
70
/**
71
71
* @param string $connectionName The unique connection name
You can’t perform that action at this time.
0 commit comments