@@ -195,7 +195,7 @@ public static function provideConfigs()
195195 ],
196196 ];
197197
198- //check normal redis connection for php redis extension
198+ // check normal redis connection for php redis extension
199199 yield [
200200 'redis+phpredis://localhost:1234?foo=bar ' ,
201201 [
@@ -218,7 +218,7 @@ public static function provideConfigs()
218218 ],
219219 ];
220220
221- //check normal redis connection for predis library
221+ // check normal redis connection for predis library
222222 yield [
223223 'redis+predis://localhost:1234?foo=bar ' ,
224224 [
@@ -241,7 +241,7 @@ public static function provideConfigs()
241241 ],
242242 ];
243243
244- //check tls connection for predis library
244+ // check tls connection for predis library
245245 yield [
246246 'rediss+predis://localhost:1234?foo=bar&async=1 ' ,
247247 [
@@ -264,11 +264,11 @@ public static function provideConfigs()
264264 ],
265265 ];
266266
267- //check tls connection for predis library
267+ // check tls connection for predis library
268268 yield [
269269 'rediss+phpredis://localhost:1234?foo=bar&async=1 ' ,
270270 [
271- 'host ' => 'tls:// localhost ' ,
271+ 'host ' => 'localhost ' ,
272272 'scheme ' => 'rediss ' ,
273273 'port ' => 1234 ,
274274 'timeout ' => 5. ,
@@ -376,7 +376,6 @@ public static function provideConfigs()
376376 ];
377377
378378 // from predis doc
379-
380379 yield [
381380 'tls://127.0.0.1?ssl[cafile]=private.pem&ssl[verify_peer]=1 ' ,
382381 [
0 commit comments