@@ -239,7 +239,7 @@ public static function provideSetSavePath(): iterable
239239 'persistent ' => null ,
240240 ],
241241 ],
242- 'persistent connection ' => [
242+ 'persistent connection with numeric one ' => [
243243 'tcp://127.0.0.1:6379?timeout=10&persistent=1 ' ,
244244 [
245245 'host ' => 'tcp://127.0.0.1 ' ,
@@ -250,7 +250,7 @@ public static function provideSetSavePath(): iterable
250250 'persistent ' => true ,
251251 ],
252252 ],
253- 'no persistent connection with have parameter ' => [
253+ 'no persistent connection with numeric zero ' => [
254254 'tcp://127.0.0.1:6379?timeout=10&persistent=0 ' ,
255255 [
256256 'host ' => 'tcp://127.0.0.1 ' ,
@@ -261,7 +261,7 @@ public static function provideSetSavePath(): iterable
261261 'persistent ' => false ,
262262 ],
263263 ],
264- 'persistent connection with true ' => [
264+ 'persistent connection with boolean true ' => [
265265 'tcp://127.0.0.1:6379?timeout=10&persistent=true ' ,
266266 [
267267 'host ' => 'tcp://127.0.0.1 ' ,
@@ -272,7 +272,7 @@ public static function provideSetSavePath(): iterable
272272 'persistent ' => true ,
273273 ],
274274 ],
275- 'persistent connection with false ' => [
275+ 'persistent connection with boolean false ' => [
276276 'tcp://127.0.0.1:6379?timeout=10&persistent=false ' ,
277277 [
278278 'host ' => 'tcp://127.0.0.1 ' ,
0 commit comments