@@ -57,8 +57,10 @@ public function testPredisDefaultParameterConfig(): void
57
57
'sentinel_username ' => null ,
58
58
'sentinel_password ' => null ,
59
59
'logging ' => false ,
60
+ 'redis_array ' => false ,
60
61
],
61
62
'commands ' => ['foo ' => 'Foo\Bar\Baz ' ],
63
+ 'scan ' => null ,
62
64
'read_write_timeout ' => null ,
63
65
'iterable_multibulk ' => false ,
64
66
'serialization ' => 'default ' ,
@@ -98,6 +100,7 @@ public function testPhpredisDefaultParameterConfig(string $config, string $class
98
100
'connection_async ' => false ,
99
101
'connection_persistent ' => false ,
100
102
'connection_timeout ' => 5 ,
103
+ 'scan ' => null ,
101
104
'read_write_timeout ' => null ,
102
105
'iterable_multibulk ' => false ,
103
106
'throw_errors ' => true ,
@@ -138,8 +141,10 @@ public function testPhpredisFullConfig(): void
138
141
'sentinel_username ' => null ,
139
142
'sentinel_password ' => null ,
140
143
'logging ' => false ,
144
+ 'redis_array ' => false ,
141
145
],
142
146
'connection_async ' => false ,
147
+ 'scan ' => null ,
143
148
'read_write_timeout ' => null ,
144
149
'iterable_multibulk ' => false ,
145
150
'throw_errors ' => true ,
@@ -177,12 +182,14 @@ public function testPhpredisWithAclConfig(): void
177
182
'ssl_context ' => null ,
178
183
'sentinel_username ' => null ,
179
184
'sentinel_password ' => null ,
185
+ 'redis_array ' => false ,
180
186
],
181
187
'prefix ' => null ,
182
188
'read_write_timeout ' => null ,
183
189
'serialization ' => 'php ' ,
184
190
'service ' => null ,
185
191
'throw_errors ' => true ,
192
+ 'scan ' => null ,
186
193
],
187
194
$ clientDefinition ->getArgument (2 ),
188
195
);
@@ -221,6 +228,7 @@ public function testPhpRedisClusterOption(): void
221
228
'connection_async ' => false ,
222
229
'connection_persistent ' => false ,
223
230
'connection_timeout ' => 5 ,
231
+ 'scan ' => null ,
224
232
'read_write_timeout ' => null ,
225
233
'iterable_multibulk ' => false ,
226
234
'throw_errors ' => true ,
@@ -250,6 +258,7 @@ public function testPhpRedisSentinelOption(): void
250
258
'connection_async ' => false ,
251
259
'connection_persistent ' => false ,
252
260
'connection_timeout ' => 5 ,
261
+ 'scan ' => null ,
253
262
'read_write_timeout ' => null ,
254
263
'iterable_multibulk ' => false ,
255
264
'throw_errors ' => true ,
@@ -280,6 +289,7 @@ public function testPhpRedisClusterOptionMultipleDsn(): void
280
289
'connection_timeout ' => 1.5 ,
281
290
'connection_persistent ' => true ,
282
291
'connection_async ' => false ,
292
+ 'scan ' => null ,
283
293
'iterable_multibulk ' => false ,
284
294
'throw_errors ' => true ,
285
295
'serialization ' => 'default ' ,
0 commit comments