@@ -59,6 +59,7 @@ public function testPredisDefaultParameterConfig(): void
59
59
'logging ' => false ,
60
60
],
61
61
'commands ' => ['foo ' => 'Foo\Bar\Baz ' ],
62
+ 'scan ' => null ,
62
63
'read_write_timeout ' => null ,
63
64
'iterable_multibulk ' => false ,
64
65
'serialization ' => 'default ' ,
@@ -98,6 +99,7 @@ public function testPhpredisDefaultParameterConfig(string $config, string $class
98
99
'connection_async ' => false ,
99
100
'connection_persistent ' => false ,
100
101
'connection_timeout ' => 5 ,
102
+ 'scan ' => null ,
101
103
'read_write_timeout ' => null ,
102
104
'iterable_multibulk ' => false ,
103
105
'throw_errors ' => true ,
@@ -140,6 +142,7 @@ public function testPhpredisFullConfig(): void
140
142
'logging ' => false ,
141
143
],
142
144
'connection_async ' => false ,
145
+ 'scan ' => null ,
143
146
'read_write_timeout ' => null ,
144
147
'iterable_multibulk ' => false ,
145
148
'throw_errors ' => true ,
@@ -183,6 +186,7 @@ public function testPhpredisWithAclConfig(): void
183
186
'serialization ' => 'php ' ,
184
187
'service ' => null ,
185
188
'throw_errors ' => true ,
189
+ 'scan ' => null ,
186
190
],
187
191
$ clientDefinition ->getArgument (2 ),
188
192
);
@@ -221,6 +225,7 @@ public function testPhpRedisClusterOption(): void
221
225
'connection_async ' => false ,
222
226
'connection_persistent ' => false ,
223
227
'connection_timeout ' => 5 ,
228
+ 'scan ' => null ,
224
229
'read_write_timeout ' => null ,
225
230
'iterable_multibulk ' => false ,
226
231
'throw_errors ' => true ,
@@ -250,6 +255,7 @@ public function testPhpRedisSentinelOption(): void
250
255
'connection_async ' => false ,
251
256
'connection_persistent ' => false ,
252
257
'connection_timeout ' => 5 ,
258
+ 'scan ' => null ,
253
259
'read_write_timeout ' => null ,
254
260
'iterable_multibulk ' => false ,
255
261
'throw_errors ' => true ,
@@ -280,6 +286,7 @@ public function testPhpRedisClusterOptionMultipleDsn(): void
280
286
'connection_timeout ' => 1.5 ,
281
287
'connection_persistent ' => true ,
282
288
'connection_async ' => false ,
289
+ 'scan ' => null ,
283
290
'iterable_multibulk ' => false ,
284
291
'throw_errors ' => true ,
285
292
'serialization ' => 'default ' ,
0 commit comments